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

15 lines
255 B
Text

class Repeat {
function : Main(args : String[]) ~ Nil {
Repeat(Example() ~ Nil, 3);
}
function : Repeat(e : () ~ Nil, i : Int) ~ Nil {
while(i-- > 0) {
e();
};
}
function : Example() ~ Nil {
"Example"->PrintLine();
}
}