Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Last active December 18, 2015 06:08
Show Gist options
  • Save pbalduino/5737442 to your computer and use it in GitHub Desktop.
Save pbalduino/5737442 to your computer and use it in GitHub Desktop.
Qual o valor mostrado?
; Qual o valor mostrado na tela? 10, 20, 30 ou nem compila?
(def m 10)
(defn foo [m]
(def m 20)
(println m))
(foo 30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment