lower blocks

This commit is contained in:
nora 2023-07-29 17:32:42 +02:00
parent 7c2faaecb8
commit 162d71c8b8
2 changed files with 48 additions and 13 deletions

View file

@ -10,13 +10,15 @@ import fs from "fs";
import { exec } from "child_process";
const input = `
function printInt(a: Int) = ;
function main() = (
let a = 0;
let b = 0;
printInt(a + b);
function printInt(a: Int) = (
0;
(
0;
1
);
);
function main() = ;
`;
function main() {