Add updated HELP.md

This commit is contained in:
2026-04-06 09:22:44 -05:00
parent 32aa8dc3d1
commit 39847fe77a
3 changed files with 357 additions and 210 deletions

View File

@@ -5,7 +5,7 @@ import {fileURLToPath} from "node:url";
import {StrVM} from "../vm.js";
import fs from "node:fs";
const helpFile = () => `${dirname(fileURLToPath(import.meta.url))}/../../../HELP.txt`
const helpFile = () => `${dirname(fileURLToPath(import.meta.url))}/../../../HELP.md`
const helpContents = () => fs.readFileSync(helpFile(), 'utf8')
export class Help extends Command<{}> {