Files
stratum-client/transforms.lua
2026-04-06 14:22:00 -07:00

23 lines
344 B
Lua

local trans = {}
--#common_transform
function trans.add(a,b)
return a+b
end
--#data_transform
function trans.test2()
if true then
do print("hello") end
end
end
--#data_transform
function trans.test()
if true then
do print("hi") end
trans.test2()
print(trans.add(5,10))
end
end
return trans