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

11 lines
181 B
Text

sub myFunc ()
print "Sure looks like a function in here..."
end sub
sub rep (func$, times)
for count = 1 to times
execute(func$)
next
end sub
rep("myFunc", 4)