diff options
Diffstat (limited to 'doc/hello-world.scm')
-rw-r--r-- | doc/hello-world.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/hello-world.scm b/doc/hello-world.scm new file mode 100644 index 0000000..262b99f --- /dev/null +++ b/doc/hello-world.scm @@ -0,0 +1,5 @@ +(define print + (command #:run "echo" (input 'message #:type 'string))) + +(workflow ((message #:type string)) + (print #:message message)) |