9 lines
198 B
Text
9 lines
198 B
Text
import extensions;
|
|
|
|
public Program()
|
|
{
|
|
int sleep := console.readLine().toInt();
|
|
Console.printLine("Sleeping...");
|
|
system'threading'Thread.sleep(sleep);
|
|
Console.printLine("Awake!")
|
|
}
|