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/inputs/pipe_chain_combo.yue | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 spec/inputs/pipe_chain_combo.yue (limited to 'spec/inputs/pipe_chain_combo.yue') diff --git a/spec/inputs/pipe_chain_combo.yue b/spec/inputs/pipe_chain_combo.yue new file mode 100644 index 0000000..d9265e4 --- /dev/null +++ b/spec/inputs/pipe_chain_combo.yue @@ -0,0 +1,8 @@ +f1 = (x)-> x + 2 +f2 = (x)-> x * 3 + +value = 3 + |> f1 + |> f2 + |> tostring + |> print -- cgit v1.2.3-55-g6feb