11 lines
242 B
Text
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();
|
|
};
|
|
}
|
|
}
|
|
}
|