RosettaCodeData/Task/Sleep/Scala/sleep.scala

9 lines
294 B
Scala
Raw Permalink Normal View History

2015-02-20 00:35:01 -05: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")
2013-04-11 01:07:29 -07:00
}