Add support for tuple literals

This commit is contained in:
nora 2023-07-30 21:49:18 +02:00
parent 0c996eb9bc
commit b64c02cf4a
6 changed files with 82 additions and 35 deletions

View file

@ -11,15 +11,10 @@ import { exec } from "child_process";
const input = `
function main() = (
let i = 0;
loop (
if i > 10 then break;
print("uwu\\n");
i = i + 1;
);
let a = (0,);
);
function uwu(): (Int, Int) = (0, 0);
`;
function main() {