github.com/joomcode/cue@v0.4.4-0.20221111115225-539fe3512047/cue/parser/corpus/+hello.cue (about)

     1  package hello
     2  
     3  command echo: {
     4      task echo: {
     5          kind:   "exec"
     6          cmd:    "echo \(message)"
     7          stdout: string
     8      }
     9  
    10      task display: {
    11          kind: "print"
    12          text: task.echo.stdout
    13      }
    14  }