Skip to content

Instantly share code, notes, and snippets.

View kuviman's full-sized avatar
👍
Yes

Vitaliy kuviman

👍
Yes
View GitHub Profile
@cgsdev0
cgsdev0 / parse.bash
Last active March 30, 2026 18:02
lisp parser
#!/usr/bin/env bash
# basic lisp parser that creates an AST.
# assumes valid input.
#
# it stores this AST using the file system, since
# bash doesn't really have a good way to do trees
output_path=/tmp/parsed