Interpreters/compilers that I've made for esolangs
Semicolon Hash is based on an accumulator, which both commands use to preform their respective actions
| Command | Action |
|---|---|
| # | Modulos the control variable by 127, takes the result as an ASCII value, prints the character corresponding to it, and resets the control accumulator to 0 |
| ; | Increments the control accumulator |
The interpreter just takes input from the user infinitely, and executes it as Semicolon Hash code.
I'm not going to explain the language here as it has too many instructions, if you want an explanation of it, click the link.
The interpreter takes input from the user as to which file to open and executes it.
Supposedly, Deadfish was made in an hour. It's a very simple language,since it's based on an accumulator and only has 4 commands:
| Command | Action |
|---|---|
| i | Increments the accumulator |
| d | Decrements the accumulator |
| s | Squares the accumulator |
| o | Outputs the accumulator |
The interpreter takes input from main.deadf, which must be in the same directory. It then executes it as deadfish code.