about summary refs log tree commit diff
path: root/e2e-tests/tools/command-line-tool-step-with-default-input.scm
blob: cb9ab445edb777ab4a57e54f210ee4b9c05f940a (plain)
1
2
3
4
5
6
7
8
(define echo
  (command #:inputs (message #:type string
                             #:default "Hello world!")
           #:run "echo" message
           #:outputs (output_message #:type stdout)))

(workflow ()
  (echo))