Skip to content

Snip: Clojure vs Context

John Weiss edited this page May 15, 2020 · 1 revision

CLOJURE

https://www.tutorialspoint.com/clojure/clojure_basic_syntax.htm

(ns clojure.examples.hello
	(:gen-class))

(defn hello-world [username]
(println (format "Hello, %s" username)))

(hello-world "Jack")

CONTEXT

hello-world
    log 'Hello, ' .

hello-world 'Jack'