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