12 lines
170 B
Text
12 lines
170 B
Text
def myFunc
|
|
"Sure looks like a function in here..." print nl
|
|
enddef
|
|
|
|
def rep /# func times -- #/
|
|
for drop
|
|
dup exec
|
|
endfor
|
|
drop
|
|
enddef
|
|
|
|
getid myFunc 4 rep
|