aboutsummaryrefslogtreecommitdiff
path: root/doc/hello-world.scm
blob: 1624053f052cbcb3862c07aa1892cc71936faeb9 (plain)
1
2
3
4
5
6
(define print
  (command #:inputs (message #:type 'string)
           #:run "echo" message))

(workflow ((message #:type string))
  (print #:message message))