Created
June 14, 2018 17:27
-
-
Save olbrichj/cd32d05a6d4b02e93b01cdd6b3c20f88 to your computer and use it in GitHub Desktop.
This file contains 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 x = 100 | |
func calculate() { | |
var y = 0 | |
for i in 1...1000 { | |
y += i | |
} | |
x = y | |
} | |
calculate() | |
print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment