aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/pipe_chain_combo.lua
blob: 6cf40a9cdf94418ba334176a166fd027645f7ce4 (plain)
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))))