aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/pipe_chain_combo.yue
diff options
context:
space:
mode:
Diffstat (limited to 'spec/inputs/pipe_chain_combo.yue')
-rw-r--r--spec/inputs/pipe_chain_combo.yue8
1 files changed, 8 insertions, 0 deletions
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 @@
1f1 = (x)-> x + 2
2f2 = (x)-> x * 3
3
4value = 3
5 |> f1
6 |> f2
7 |> tostring
8 |> print