2025-08-17 16:10:13 -06:00
|
|
|
#!/usr/bin/env bun
|
|
|
|
|
import { createCLI } from "@bunli/core";
|
|
|
|
|
|
2025-08-18 22:53:36 -06:00
|
|
|
import { run } from "./commands/run.js";
|
|
|
|
|
|
2025-08-17 16:10:13 -06:00
|
|
|
const cli = createCLI({
|
|
|
|
|
name: "boringlang",
|
|
|
|
|
version: "0.1.0",
|
|
|
|
|
description: "Boring programming language CLI",
|
|
|
|
|
});
|
|
|
|
|
|
2025-08-18 22:53:36 -06:00
|
|
|
cli.command(run);
|
2025-08-17 16:10:13 -06:00
|
|
|
|
|
|
|
|
await cli.run();
|