summaryrefslogtreecommitdiff
path: root/doc/hello-world.scm
diff options
context:
space:
mode:
Diffstat (limited to 'doc/hello-world.scm')
-rw-r--r--doc/hello-world.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/hello-world.scm b/doc/hello-world.scm
index 262b99f..1624053 100644
--- a/doc/hello-world.scm
+++ b/doc/hello-world.scm
@@ -1,5 +1,6 @@
(define print
- (command #:run "echo" (input 'message #:type 'string)))
+ (command #:inputs (message #:type 'string)
+ #:run "echo" message))
(workflow ((message #:type string))
(print #:message message))