Another failed attempt

This commit is contained in:
2025-12-22 16:55:09 +11:00
parent 78ce4f18f8
commit 9ccf6c558f
7 changed files with 182 additions and 123 deletions

24
README.md Normal file
View File

@@ -0,0 +1,24 @@
# Brain Assembly
Brain Assembly is a ground-like language that compiles to Brainfuck. It provides variable creation, C-like pointers, and other tools that make it feel more familiar to use.
# Setup
```bash
git clone https://chookspace.com/DiamondNether90/BrainAssemblyV2 BrainAssembly
cd BrainAssembly
sudo ln -s (pwd)/src/main.py /usr/local/bin/basm
```
To compile a file, run:
```bash
basm (filename) (writefile) (flags)
```
Example usage:
```bash
# Compile tests/test.basm and write code to test.bf:
basm tests/test.basm test.bf
```
# Syntax
Syntax can be found in `docs/syntax.md`