blob: ca8e6b5f679c617332632b13b15ec6b652a0db0f [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
-- in.cue --
"hello\nworld"
-- out/def --
"""
hello
world
"""
-- out/export --
"""
hello
world
"""
-- out/yaml --
|-
hello
world
-- out/json --
"hello\nworld"
-- out/legacy-debug --
"""
hello
world
"""
-- out/compile --
--- in.cue
{
"hello\nworld"
}
-- out/eval --
(string){ "hello\nworld" }