...

Text file src/cuelang.org/go/cue/parser/testdata/corpus/+hello.cue

Documentation: cuelang.org/go/cue/parser/testdata/corpus

     1package hello
     2
     3command 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}

View as plain text