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));
|