feature: First push to git

This commit is contained in:
Keith Solomon
2026-05-16 14:02:49 -05:00
commit 265f69d95a
46 changed files with 11551 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { createProgram } from './cli/program.js';
createProgram()
.parseAsync(process.argv)
.catch((error: unknown) => {
const message = error instanceof Error ? error.message : String(error);
console.error(`nlc: ${message}`);
process.exitCode = 1;
});