5 lines
175 B
Text
5 lines
175 B
Text
|
|
function : Time() ~ Nil {
|
||
|
|
t := Time->New();
|
||
|
|
IO.Console->GetInstance()->Print(t->GetHours())->Print(":")->Print(t->GetMinutes())->Print(":")->PrintLine(t->GetSeconds());
|
||
|
|
}
|