RosettaCodeData/Task/Sleep/Elena/sleep.elena

10 lines
198 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import extensions;
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
int sleep := console.readLine().toInt();
2026-02-01 16:33:20 -08:00
Console.printLine("Sleeping...");
system'threading'Thread.sleep(sleep);
Console.printLine("Awake!")
2023-07-01 11:58:00 -04:00
}