diff options
Diffstat (limited to 'spec/inputs/pipe_chain_combo.yue')
| -rw-r--r-- | spec/inputs/pipe_chain_combo.yue | 8 |
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 @@ | |||
| 1 | f1 = (x)-> x + 2 | ||
| 2 | f2 = (x)-> x * 3 | ||
| 3 | |||
| 4 | value = 3 | ||
| 5 | |> f1 | ||
| 6 | |> f2 | ||
| 7 | |> tostring | ||
| 8 | |||
