lunajit/snippets/test4.lua

11 lines
84 B
Lua

function b(x)
return x
end
function c(y)
return y
end
return b(1) * c(2)