4 lines
147 B
Text
4 lines
147 B
Text
def base := timer.now()
|
|
for string in ["Enjoy", "Rosetta", "Code"] {
|
|
timer <- whenPast(base + entropy.nextInt(1000), fn { println(string) })
|
|
}
|