Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created February 4, 2019 10:22
Show Gist options
  • Save stevencurtis/a897706963330eefe532ccf96d9f188f to your computer and use it in GitHub Desktop.
Save stevencurtis/a897706963330eefe532ccf96d9f188f to your computer and use it in GitHub Desktop.
Iterative countDown
func countDown(_ num: Int){
if (num < 1) {return}
var number = num
while number > 0 {
print (number)
number -= 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment