Add sample for 'repeat' function
Co-authored-by: Ilya Gorbunov <ilya.gorbunov@jetbrains.com>
This commit is contained in:
@@ -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!")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user