v/vlib/v/fmt/tests/string_raw_and_cstr_keep.vv

7 lines
75 B
V

fn main() {
raw := r'\x00'
cstr := c'foo'
println(raw)
println(cstr)
}