This commit is contained in:
2026-04-06 14:22:00 -07:00
commit b9e356c0d0
5 changed files with 324 additions and 0 deletions

23
transforms.lua Normal file
View File

@@ -0,0 +1,23 @@
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