13 lines
148 B
Text
13 lines
148 B
Text
|
|
||
|
# Testing whether nested variable declarations work
|
||
|
|
||
|
let id x.
|
||
|
let foo = x
|
||
|
return foo
|
||
|
|
||
|
@:Int id 1
|
||
|
@:Bool id True
|
||
|
@:Int id 1
|
||
|
@:String id "foo"
|
||
|
|