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

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