1# RUN: yaml-bench -canonical %s
2
3unicode: "Sosa did fine.\u263A"
4control: "\b1998\t1999\t2000\n"
5hexesc:  "\x13\x10 is \r\n"
6
7single: '"Howdy!" he cried.'
8quoted: ' # not a ''comment''.'
9tie-fighter: '|\-*-/|'
10
11# CHECK: !!str "Sosa did fine.\u263A"
12# CHECK: !!str "\b1998\t1999\t2000\n"
13# CHECK: !!str "\x13\x10 is \r\n"
14# CHECK: !!str "\"Howdy!\" he cried."
15# CHECK: !!str " # not a 'comment'."
16# CHECK: !!str "|\\-*-/|"
17