escape underscores

This commit is contained in:
nora 2023-07-29 23:49:23 +02:00
parent 7cd50ab554
commit 7c88a3513e
2 changed files with 10 additions and 7 deletions

View file

@ -12,10 +12,10 @@ import { exec } from "child_process";
const input = `
function main() = uwu(10);
function a() = ;
function ___print() = ;
function uwu(a: Int) = if a != 0 then (
print("uwu\n");
print("uwu\n");
uwu(a - 1);
);
`;