mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
11 lines
210 B
Nim
11 lines
210 B
Nim
discard """
|
|
cmd: "nim default $file"
|
|
output: '''hello world!'''
|
|
msg: '''[NimScript] exec: gcc -v'''
|
|
"""
|
|
|
|
when not defined(definedefine):
|
|
{.fatal: "wrong nim script configuration".}
|
|
|
|
echo "hello world!"
|