1 2 3 4 5 6 7 8 9
local f1 f1 = function(x) return x + 2 end local f2 f2 = function(x) return x * 3 end local value = print(tostring(f2(f1(3))))