1
0
Fork 0
forked from fun/fun
fun/examples/boolean_decl.fun

6 lines
155 B
Standard ML
Executable file

#!/usr/bin/env fun
boolean b = false
print("b => " + to_string(b))
/* Try typeof via built-in function if available */
print("typeof(b) => " + typeof(b))