Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created February 25, 2012 12:00
Show Gist options
  • Select an option

  • Save edipofederle/1908083 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/1908083 to your computer and use it in GitHub Desktop.
function 1
(defn say_hello
"Retorna Hello username, se username for
omitido asume world"
([] (say_hello "world"))
([username]
(str "Hello, " username)))
(say_hello "edipo")
(say_hello)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment