Skip to content

Instantly share code, notes, and snippets.

@AntonisFK
Created December 8, 2017 03:49
Show Gist options
  • Save AntonisFK/65327eeadfda7c5edaa3fd91ab6296de to your computer and use it in GitHub Desktop.
Save AntonisFK/65327eeadfda7c5edaa3fd91ab6296de to your computer and use it in GitHub Desktop.
func fib(until n: Int) -> Void {
var num1 = 0
var num2 = 1
for _ in 0...n {
let num = num1 + num2
print(num)
num1 = num2
num2 = num
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment