Skip to content

Instantly share code, notes, and snippets.

@knjname
Created March 20, 2013 16:26
Show Gist options
  • Select an option

  • Save knjname/5206058 to your computer and use it in GitHub Desktop.

Select an option

Save knjname/5206058 to your computer and use it in GitHub Desktop.
Clear differences between let and let*.
(let ((a 10))
(let ((a 200) (b a))
a ; => 200
b ; => 10
)
(let* ((a 200) (b a))
a ; => 200
b ; => 200
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment