Created
February 1, 2015 02:48
-
-
Save def-/c1e93006eb853a35dcd7 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
| var i = 20 | |
| while true: | |
| if i mod 19 == 0 and i mod 18 == 0 and i mod 17 == 0 and i mod 16 == 0 and | |
| i mod 15 == 0 and i mod 14 == 0 and i mod 13 == 0 and i mod 12 == 0 and | |
| i mod 11 == 0: | |
| echo "result: ", i | |
| break | |
| i += 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment