mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-18 18:16:31 +00: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));
|