Skip to content

Instantly share code, notes, and snippets.

@sohnryang
Created January 31, 2017 22:25
Show Gist options
  • Save sohnryang/942dcd06c09cde640305cb9d5be27aac to your computer and use it in GitHub Desktop.
Save sohnryang/942dcd06c09cde640305cb9d5be27aac to your computer and use it in GitHub Desktop.
scala for the impatient - writing countdown procedure
def countdown(n: Int) {
for (i <- n to 0 by -1) println(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment