Quickstart
Write and run your first BrainRot program in under a minute.
First Program
Create a file named hello.brt with the following content:
hello.brt
let_him_cook main() {
say_my_name("Hello, BrainRot!")
trust_me_bro x = 42
say_my_name(x)
}Run It
terminal
brainrot run hello.brt
# Hello, BrainRot!
# 42Next Steps
- Learn all 14 Keywords
- Explore the Syntax reference
- Browse Examples