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