luaforwindows/SciTE/scite-debug/tests/scipt1.lua

13 lines
111 B
Lua
Executable File

function two(x)
print(x)
end
function one(y)
print(y)
two('go')
print('there')
end
one('dolly')