10 lines
205 B
Text
10 lines
205 B
Text
|
|
import extensions;
|
||
|
|
|
||
|
|
public program()
|
||
|
|
{
|
||
|
|
int sleep := console.readLine().toInt();
|
||
|
|
console.printLine("Sleeping...");
|
||
|
|
system'threading'threadControl.sleep(sleep);
|
||
|
|
console.printLine("Awake!")
|
||
|
|
}
|