From f1454bbbd13a71da2005ff789cde2da0e9eb81f6 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Thu, 22 Jan 2026 15:03:12 +0800 Subject: Adding tests. --- spec/outputs/pipe_chain_combo.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 spec/outputs/pipe_chain_combo.lua (limited to 'spec/outputs/pipe_chain_combo.lua') diff --git a/spec/outputs/pipe_chain_combo.lua b/spec/outputs/pipe_chain_combo.lua new file mode 100644 index 0000000..6cf40a9 --- /dev/null +++ b/spec/outputs/pipe_chain_combo.lua @@ -0,0 +1,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)))) -- cgit v1.2.3-55-g6feb