Add sample for 'repeat' function

Co-authored-by: Ilya Gorbunov <ilya.gorbunov@jetbrains.com>
This commit is contained in:
ymnder
2018-07-23 21:20:33 +09:00
committed by Ilya Gorbunov
parent 0c97d99d77
commit 1a20b1f357
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,23 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
package samples.misc
import samples.*
class ControlFlow {
@Sample
fun repeat() {
// greets three times
repeat(3) {
println("Hello")
}
repeat(0) {
error("We should not get here!")
}
}
}