mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
14 lines
333 B
Nim
14 lines
333 B
Nim
discard """
|
|
cmd: "nim default --hint:cc:off --hint:cc $file"
|
|
output: '''hello world! 0.5 true'''
|
|
nimout: '''[NimScript] exec: gcc -v'''
|
|
"""
|
|
|
|
when not defined(definedefine):
|
|
{.fatal: "wrong nim script configuration".}
|
|
|
|
import math, mfriends
|
|
|
|
discard gen[int]()
|
|
echo "hello world! ", ln 2.0, " ", compileOption("opt", "speed")
|