RosettaCodeData/Task/Sleep/Elena/sleep.elena

10 lines
205 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
public program()
{
int sleep := console.readLine().toInt();
console.printLine("Sleeping...");
system'threading'threadControl.sleep(sleep);
console.printLine("Awake!")
}