Created
August 10, 2018 03:01
-
-
Save mildocjr/14e4e65fa4fd26b921dd29d628b8db0d to your computer and use it in GitHub Desktop.
while-issue-1
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.0 | |
| var total: Double = 25 | |
| var increment: Double = -3.75 | |
| while count < total | |
| count += increment | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment