Files
orx/orx-timer/src/demo/kotlin/DemoRepeat01.kt
Edwin Jakobs fa2a2f54ba Add orx-timer
2020-04-08 12:43:26 +02:00

13 lines
225 B
Kotlin

import org.openrndr.application
import org.openrndr.extra.timer.repeat
fun main() = application {
program {
repeat(2.0) {
println("hello there $seconds" )
}
extend {
}
}
}