1
0
Fork 0
forked from fun/fun
fun/history/0.2.0-shebang-comments-strings-integers-booleans-identifiers-simple-assignments-globals-print.fun

11 lines
108 B
Standard ML
Raw Normal View History

#!/usr/bin/env fun
/*
* Hello, world!
*/
fun hello_world() {
print("Hello, world!")
}
// Bye, world!