module 0x8675309::M { public fun byte_string(): vector { b"Diem" } public fun byte_string_with_quotes(): vector { b"\"Diem\"" } public fun byte_string_with_escaped_sequence(): vector { b"Hello\n diem. \n Newline; \r Carriage return; \t Tab; \\ Backslash; \0 Null" } public fun empty_byte_string(): vector { b"" } public fun byte_string_with_hex(): vector { b"\x00\x01\x02" } public fun escaped_backslash_before_quote(): vector { b"\\" } }