mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
182 B
Nim
10 lines
182 B
Nim
# Module B
|
|
import trecmod2
|
|
|
|
proc p*(x: trecmod2.T1): trecmod2.T1 =
|
|
# this works because the compiler has already
|
|
# added T1 to trecmod2's interface symbol table
|
|
return x + 1
|
|
|
|
|