blob: 6d7042198c74f27c10efb03a30f8a27cfa425e04 [file] [log] [blame]
cue export ./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 --