This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |