RosettaCodeData/Task/Repeat/Lua/repeat.lua

12 lines
173 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function myFunc ()
print("Sure looks like a function in here...")
end
function rep (func, times)
for count = 1, times do
func()
end
end
rep(myFunc, 4)