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 // device control 3 for callie's big project
result.push("\x13"); result.push("\x13");
break; break;
case "M":
// end of medium for callie's big project
result.push("\x19");
break;
default: default:
throw new CompilerError( throw new CompilerError(
`invalid escape character: ${input[i]}`, `invalid escape character: ${input[i]}`,