Files
rpnc/t/cmdlinecalc-lua.txtar

17 lines
237 B
Plaintext
Raw Normal View History

exec testrpn -d -c test.lua 3 5 lower
stdout '3\n'
-- test.lua --
function lower(a,b)
if a < b then
return a
else
return b
end
end
function init()
-- expects 2 args
register("lower", 2, "lower")
end