mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
24 lines
359 B
Nim
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)
|