RosettaCodeData/Task/Sleep/Objeck/sleep.objeck
2023-07-01 13:44:08 -04:00

11 lines
242 B
Text

bundle Default {
class Test {
function : Main(args : System.String[]) ~ Nil {
if(args->Size() = 1) {
"Sleeping..."->PrintLine();
Thread->Sleep(args[0]->ToInt());
"Awake!"->PrintLine();
};
}
}
}