mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 13:55:41 +01:00
8 lines
271 B
Text
8 lines
271 B
Text
(def object "call object via def()")
|
|
(defn say-hello
|
|
"Takes name argument and say hello to the name"
|
|
[name]
|
|
(println (str "God said let there be " name)))
|
|
(let [l "light"] (println (str (say-hello l) " " object)))
|
|
(doc say-hello)
|
|
(meta (var say-hello))
|