Brainrot is a meme-inspired programming language that translates common programming keywords into internet slang and meme references. It's built using Flex (lexical analyzer) and Bison (parser generator), making it a fun way to learn about language processing and compiler design.
The TRUE history behind the Brainrot programming language can be found here.
Brainrot is a C-like programming language where traditional keywords are replaced with popular internet slang. For example:
voidβskibidiintβrizzforβflexreturnβbussin
To build and run the Brainrot compiler, you'll need:
- GCC (GNU Compiler Collection)
- Flex (Fast Lexical Analyzer)
- Bison (Parser Generator)
sudo apt-get update
sudo apt-get install gcc flex bison libfl-devsudo pacman -S gcc flex bisonbrew install gcc flex bisonSome macOS users are experiencing an error related to libfl. First, check if libfl is installed at:
/opt/homebrew/lib/libfl.dylib # For Apple Silicon
/usr/local/lib/libfl.dylib # For Intel Macs
And if not, you have to find it and symlink to it. Find it using:
find /opt/homebrew -name "libfl.*" # For Apple Silicon
find /usr/local -name "libfl.*" # For Intel Macs
And link it with:
sudo ln -s /path/to/libfl.dylib /opt/homebrew/lib/libfl.dylib # For Apple Silicon
sudo ln -s /path/to/libfl.dylib /usr/local/lib/libfl.dylib # For Intel Macs
git clone https://github.com/Brainrotlang/brainrot.git
cd brainrot
nix develop
# then create your .brainrot file
./result/bin/brainrot filename.brainrotOr via a flake-based NixOS config (/etc/nixos/flake.nix), which always tracks the latest version:
# /etc/nixos/flake.nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
brainrot.url = "github:Brainrotlang/brainrot";
};
outputs = { nixpkgs, brainrot, ... }: {
nixosConfigurations.your-hostname = nixpkgs.lib.nixosSystem {
modules = [
./configuration.nix
{
# For a specific user
users.users.username = {
packages = [ brainrot.packages.x86_64-linux.default ];
};
# For system-wide installation
environment.systemPackages = [
brainrot.packages.x86_64-linux.default
];
}
];
};
};
}Run nix flake update whenever you want to pull the latest version, then rebuild with sudo nixos-rebuild switch.
- Clone this repository:
git clone https://github.com/Brainrotlang/brainrot.git
cd brainrot- Generate the parser and lexer:
bison -d -Wcounterexamples lang.y -o lang.tab.c
flex -o lang.lex.c lang.l- Compile the compiler:
makeNOTE: The gcc version we use to test is v13 if you get any warnings remove -Werror flag from the Makefile
sudo make installsudo make uninstallmake wasm builds brainrot.wasm + brainrot.mjs using Emscripten β this is what powers the in-browser playground. Requires emcc on your PATH (install via emsdk):
make wasmThe interpreter is statically linked for this target (no libstdrot.so, no dlopen β see stdrot.c's STDROT_STATIC path), and takes its source file the same way the native binary does, via argv[1] written into Emscripten's in-memory filesystem before calling callMain.
Known platform-specific difference from the native build: sizeof(giga) is 4, not 8 β wasm32 uses the ILP32 data model (long = 4 bytes) instead of native's LP64 (#177). Everything else, including stderr, matches native exactly.
node tests/run_wasm_tests.mjs runs the same fixtures as the native pytest suite against the wasm build (checking the one difference above against its wasm-correct value instead of native's), and node tests/run_wasm_examples_check.mjs diffs every examples/*.brainrot program's stdout against a real native run. Run both after make && make wasm to sanity-check a build.
chill() calls sleep() under the hood, which blocks the JS thread it runs on rather than yielding β fine in a short-lived CLI run, but something a browser embedder (e.g. a playground) should account for (run in a Worker, expect the tab to be unresponsive for the duration) rather than assume it behaves like an async delay.
- Create a Brainrot source file (e.g.,
hello.brainrot):
skibidi main {
yapping("Hello, World!");
bussin 0;
}- Run your Brainrot program:
./brainrot hello.brainrotCheck out the examples:
- Hello world
- Fizz Buzz
- Bubble Sort
- One-dimensional Heat Equation Solver
- Fibonacci Sequence
- Modules (
#cooked)
Join our community on:
| Brainrot | C Equivalent | Implemented? |
|---|---|---|
| skibidi | void | β |
| rizz | int | β |
| cap | bool | β |
| flex | for | β |
| bussin | return | β |
| edgy | if | β |
| amogus | else | β |
| goon | while | β |
| bruh | break | β |
| grind | continue | β |
| chad | float | β |
| gigachad | double | β |
| yap | char | β |
| deadass | const | β |
| sigma rule | case | β |
| based | default | β |
| mewing | do | β |
| gyatt | enum | β |
| whopper | extern | β |
| cringe | goto | β |
| giga | long | β |
| smol | short | β |
| nut | signed | β |
| maxxing | sizeof | β |
| salty | static | β |
| gang | struct | β |
| ohio | switch | β |
| chungus | union | β |
| nonut | unsigned | β |
| schizo | volatile | β |
| W | true | β |
| L | false | β |
| thicc | long long | β |
| rant | string type | β |
| lit | typedef | β |
| Brainrot | C Equivalent | Implemented? |
|---|---|---|
| #cooked | #include | β |
| #edgydef | #ifdef | β |
| #edgyndef | #ifndef | β |
| #endedgy | #endif | β |
| #slaps | #define | β |
| #aura | #pragma | β |
#cooked "path/to/file.brainrot" splices another Brainrot file's functions
and structs into the current one, resolved relative to the including file's
directory. See the language reference
for details (path resolution, include-once behavior, circular-include
detection).
Check the user documentation.
The language supports basic arithmetic operators:
+Addition-Subtraction*Multiplication/Division=Assignment<Less than>Greater than&&Logical AND||Logical OR
Current limitations include:
- Limited support for complex expressions
- Basic error reporting
- Struct/union function parameters and return values must be a plain struct/union variable of the exact declared type (no sub-expressions, e.g. a chained call or a member access) β arguments and return values are deep-copied, not aliased
- Arrays cannot be passed or returned by value (only via a pointer parameter, which aliases the caller's array like in C)
ohio/based(switch/default):basedfires as soon as the interpreter's scan reaches it, so its position among thesigma rulecases matters β placing it before a case that would otherwise match currently pre-empts that match (#179)
Where Brainrot is headed β a native C ABI, generated library bindings (raylib first), threads, hashmaps and sockets β is documented in the roadmap.
Brainrot has a Visual Studio Code extension to enhance your development experience with syntax highlighting and support for the Brainrot programming language. You can find it here:
Feel free to contribute to this project by:
- Forking the repository
- Creating a new branch for your feature
- Submitting a pull request
This project is licensed under the GPL License - see the LICENSE file for details.
- This project is created for educational purposes
- Inspired by meme culture and internet slang
- Built using Flex and Bison tools
Please report any additional issues in the GitHub Issues section.