Last active
October 15, 2018 16:49
-
-
Save toumorokoshi/922b919768ed7d029ce22fdb044a3ca2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
(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