mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
11 lines
193 B
Nim
11 lines
193 B
Nim
type
|
|
T1* = int # Module A exports the type ``T1``
|
|
|
|
import mrecmod2 # the compiler starts parsing B
|
|
|
|
proc main() =
|
|
var i = p(3) # works because B has been parsed completely here
|
|
|
|
main()
|
|
|