1
0
Fork 0
forked from fun/fun
fun/play.fun
2025-09-14 15:12:30 +02:00

15 lines
210 B
Standard ML
Executable file

#!/usr/bin/env fun
print("Yay, the playground for having fun... ;)")
number n = 10
print(n)
string s = "Hello, world!"
print(s)
fun foo()
//print("Have fun!")
print("Running foo()... forever.")
foo()