Files
rpnc/t/cmdlinecalc-lua.txtar

17 lines
233 B
Plaintext
Raw Normal View History

2025-08-08 12:30:32 +02:00
exec rpn -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