blob: ad5c5cf2085ed643172be4f943ec80d64f9328d1 [file] [log] [blame]
cue export ./hello
cmp stdout expect-stdout
-- expect-stdout --
{
"$type": "demo",
"message": "Hello World!"
}
-- hello/data.cue --
package hello
who :: "World"
-- hello/hello.cue --
package hello
$type: "demo"
message: "Hello \(who)!" // who declared in data.cue
-- hello/cue.mod --