1#path: a.b 2-- in.cue -- 3#def: { 4 a: 1 5} 6 7a: b: c: #def 8-- out/default -- 9c: DEF.#x 10 11//cue:path: #def 12let DEF = { 13 #x: { 14 a: 1 15 } 16}
View as plain text