mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-07-03 22:36:56 +01:00
6 lines
172 B
TypeScript
6 lines
172 B
TypeScript
import { Compiler } from "./compiler.ts";
|
|
|
|
const { program } = await new Compiler(Deno.args[0]).compile();
|
|
|
|
await Deno.writeTextFile("out.slgbc", JSON.stringify(program));
|