mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
13 lines
244 B
Nim
13 lines
244 B
Nim
discard """
|
|
file: "tinit.nim"
|
|
output: "Hello from module! Hello from main module!"
|
|
"""
|
|
# Test the new init section in modules
|
|
|
|
import minit
|
|
|
|
write(stdout, "Hello from main module!\n")
|
|
#OUT Hello from module! Hello from main module!
|
|
|
|
|