serene-golang-implementation/bootstrap/examples/hello-world.srn

11 lines
156 B
Plaintext
Raw Normal View History

(ns examples.hello-world)
(def hello-world
(fn (name)
(println "hello" name)))
(def main
(fn (&args)
(hello-world "world")))