This commit is contained in:
nora 2023-07-29 22:12:51 +02:00
parent f0227af982
commit 02bbd8ec1e

View file

@ -169,6 +169,10 @@ export function tokenize(input: string): Token[] {
// device control 3 for callie's big project
result.push("\x13");
break;
case "M":
// end of medium for callie's big project
result.push("\x19");
break;
default:
throw new CompilerError(
`invalid escape character: ${input[i]}`,