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