phi-lang/program.phi
2025-09-11 23:12:36 +02:00

8 lines
118 B
Plaintext

(fn hello () (do
(call println "hello world")
(call println "hello world")
(return null)
))
(call hello)