Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 317 Bytes

pipeline.md

File metadata and controls

18 lines (12 loc) · 317 Bytes

Pipeline Syntax

_ gets replaced with the result of the previous step. _ can also be used multiple times.

@p
@p ones 2 3 | minus 2   => -ones(2,3)
Caveats
  • Literal ranges sometimes need to be places in parentheses:
@p id 1:10
@p id (1:10) | sum