blob: 7f1a671122b97d249d326782f77fd6551100bcdf (
plain)
1
2
3
4
5
6
7
8
|
(define echo
(command #:inputs (message #:type string)
#:run "echo" message
#:outputs (output_message #:type stdout)))
(workflow ((message #:type string
#:default "Hello world!"))
(echo #:message message))
|