Add escaped backslash

This commit is contained in:
Sofia 2026-04-16 20:45:38 +03:00
parent c4837ca9b0
commit c3e12b087a

View File

@ -21,6 +21,8 @@ static std::optional<char> get_escaped(std::string_view inspected) {
return '\r';
if (inspected == "t")
return '\t';
if (inspected == "\\")
return '\\';
if (inspected.size() <= 3) {
for (char c : inspected) {
std::cout << c << std::endl;