github.com/alkemics/goflow@v0.2.1/wrappers/bind/bind.yml (about)

     1  name: Bind
     2  package: main
     3  
     4  nodes:
     5    - id: make_slice
     6      type: nodes.SliceMaker
     7  
     8    - id: add
     9      type: nodes.IntAggregator
    10      bind:
    11        reducer: functions.IntSum
    12  
    13    - id: print
    14      type: nodes.Printer
    15      bind:
    16        values:
    17          - '"should print 1, 2, 3 and 0"'
    18          - make_slice.list
    19          - add.result
    20