mirror of
https://github.com/engineer-man/piston.git
synced 2025-07-09 07:28:46 +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)
|