mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
216 B
Nim
10 lines
216 B
Nim
discard """
|
|
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!
|