blob: be535bccef82107129e126d499bd00e73d8a28b3 [file] [log] [blame]
cue cmd foo
cmp stdout expect-stdout
-- expect-stdout --
foo
-- foo_tool.cue --
package foo
import "tool/cli"
command foo task: {
foo: cli.Print & {
text: "foo"
}
}