Skip to content

Instantly share code, notes, and snippets.

@laiso
Created April 14, 2020 06:19
Show Gist options
  • Save laiso/171538e70d0bc0f5746d2775a228672c to your computer and use it in GitHub Desktop.
Save laiso/171538e70d0bc0f5746d2775a228672c to your computer and use it in GitHub Desktop.
a sample post by CodePiece #CodePiece
// (c) https://qiita.com/tasogarei/items/fea4d392dbd4449980f7
fun main(args: Array<String>) {
(1..100).forEach{
when {
it % 15 == 0 -> println("fizzbuzz")
it % 3 == 0 -> println("fizz")
it % 5 == 0 -> println("buzz")
else -> println(it)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment