Skip to content

Instantly share code, notes, and snippets.

@toumorokoshi
Last active October 15, 2018 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toumorokoshi/922b919768ed7d029ce22fdb044a3ca2 to your computer and use it in GitHub Desktop.
Save toumorokoshi/922b919768ed7d029ce22fdb044a3ca2 to your computer and use it in GitHub Desktop.
[
(let x 0)
(while (not (eq x 10)) (++ x))
]
// equivalent to
let x 0
while (not (eq x 10))
++ x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment