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