RosettaCodeData/Task/Sleep/Scala/sleep.scala

9 lines
294 B
Scala
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
object Sleeper extends App {
print("Enter sleep time in milli sec: ")
val ms = scala.io.StdIn.readInt()
println("Sleeping...")
val sleepStarted = scala.compat.Platform.currentTime
Thread.sleep(ms)
println(s"Awaked after [${scala.compat.Platform.currentTime - sleepStarted} ms]1")
}