8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
(fn hello () (do
|
|
(call println "hello world")
|
|
(call println "hello world")
|
|
(return null)
|
|
))
|
|
|
|
(call hello)
|