blob: 805f4df83d83609538df735aebc75ca22a6fc703 (
plain)
1
2
3
4
5
6
7
8
|
(define print
(command #:inputs (message #:type string) (other-message #:type string)
#:run "echo" message other-message
#:outputs (printed_output #:type stdout)))
(workflow ((message #:type string) (other_messages #:type (array string)))
(scatter (print #:message message)
#:other-message other_messages))
|