Created
August 10, 2018 03:02
-
-
Save mildocjr/e0bfba54abafc31ce87a1191e4a03941 to your computer and use it in GitHub Desktop.
while-issue-2
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 count: Double = -100 | |
| while -100 < 25.0 { | |
| count += -3.75 | |
| } | |
| // Still don't see it? Let's simplify. | |
| var count = -100 | |
| while count < 25 { | |
| count = count - 3 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment