This commit is contained in:
nora 2023-07-29 18:31:39 +02:00
parent 9ac5fec4bd
commit 27a4ecc46b
3 changed files with 40 additions and 17 deletions

View file

@ -10,14 +10,12 @@ import fs from "fs";
import { exec } from "child_process";
const input = `
function printInt(a: Int) = (
let a = 0;
let b = 0;
let c = ();
a + b;
c
function printInt(a: Int): Int = (
if true then (
0;
1;
);
0
);
function main() = ;