Files
orx/orx-timer/src/demo/kotlin/DemoTimeOut01.kt
2024-09-02 12:15:44 +02:00

11 lines
199 B
Kotlin

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