Files
Nim/tests/js/test2.nim
2013-03-24 13:05:19 +01:00

24 lines
359 B
Nim

discard """
cmd: "nimrod js --hints:on -r $# $#"
output: '''foo
js 3.14'''
"""
# This file tests the JavaScript generator
# #335
proc foo() =
var bar = "foo"
proc baz() =
echo bar
baz()
foo()
# #376
when not defined(JS):
proc foo(val: float): string = "no js " & $val
else:
proc foo(val: float): string = "js " & $val
echo foo(3.14)