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)