mirror of
https://github.com/engineer-man/piston.git
synced 2025-06-09 11:36:27 +02:00
5 lines
100 B
Clojure
5 lines
100 B
Clojure
(ns clojure.examples.hello
|
|
(:gen-class))
|
|
(defn hello-world []
|
|
(println "good"))
|
|
(hello-world)
|