blob: 1fe971d26e93cc7f8141ce30b25e497816e81f95 [file] [log] [blame]
cue export --out yaml ./hello
cmp stdout expect-stdout
-- expect-stdout --
message: Hello World!
-- hello/data.cue --
package hello
who :: "World"
-- hello/hello.cue --
package hello
message: "Hello \(who)!" // who declared in data.cue
-- hello/cue.mod --