dim funcs$(10)
sub power2(i)
return i * i
end sub
for i = 1 to 10
funcs$(i) = "power2"
next
print execute(funcs$(i), i)