diff --git a/vlib/builtin/int.v b/vlib/builtin/int.v index a3a4653afb..ec1e36698d 100644 --- a/vlib/builtin/int.v +++ b/vlib/builtin/int.v @@ -472,6 +472,7 @@ pub fn (b byte) str_escaped() string { 11 { r'`\v`' } 12 { r'`\f`' } 13 { r'`\r`' } + 27 { r'`\e`' } 32...126 { b.ascii_str() } else { '0x' + b.hex() } }