Closed coyo-t closed 2 months ago
Test case:
local function tofs(t)
local f
f=|s|->do
t:insert(s)
return f
end
return f
end
do
local t = {}
tofs(t) "abc" "def"
assert(#t == 2)
assert(t[1] == "abc")
assert(t[2] == "def")
end
do
local t = {}
tofs(t) "abc""def"
assert(#t == 2)
assert(t[1] == "abc")
assert(t[2] == "def")
end
ex:
will work fine in 5.4, but in pluto it does the C/Python thing of juxtaposed string joining, and will throw a runtime error saying it cant find the script
template.fullglass.lua
in any of the package pathsadding spaces between the arguments will work fine however