fork(1) download
-- your code goes here

function test(x, y, z)
	print(x, y, z)
end

function two()
	return 10, 11
end

function three()
	return 10, 11, 12
end

test(three())
test(two() + 12)
Success #stdin #stdout 0.01s 2540KB
stdin
Standard input is empty
stdout
10	11	12
22	nil	nil