Parser for the Plorth programming language, written in TypeScript.
import parse from "plorth-parser";
const program = parse("'Hello, World!' println");
console.log(program[0].type); // "string"
console.log(program[1].type); // "symbol"
console.log(program[1].id); // "println"