This commit is contained in:
nora 2023-07-31 20:26:50 +02:00
parent b779a51ef5
commit f582a5b4c3
9 changed files with 248 additions and 85 deletions

View file

@ -13,10 +13,10 @@ import { Crate, Built, Typecked } from "./ast";
import { Ids } from "./utils";
const INPUT = `
extern mod std;
global HELLO: I32 = 0_I32;
function main() = (
std.printlnInt(10000);
HELLO = 1_I32;
);
`;