brtlang is a dynamically typed, toy, meme-inspired programming language which replaces the conventional programming keywords with meme references.
the package is not yet published to https://pkg.go.dev so if you want to try it out, you have to build it from source
git clone https://github.com/0xmukesh/brtlang
cd brtlang
go build -o brtlang cmd/interpreter/main.go
create a new file ending with .brt (test.brt)
yap("hello, world");
execute the code via the following command
./brtlang run test.brt
| brtlang | golang equivalent |
|---|---|
| rizz | var |
| edging | if |
| mid | else if |
| amogus | else |
| bet | true |
| cap | false |
| nada | nil |
| vibin | while |
| chillin | for |
| skibidi | func |
| bussin | return |
yap(msg string)- equivalent tofmt.PrintlnvibeCheck()- equivalent totime.Now().Unix()
+- addition++- increment-- subtraction--- decrement*- multiplication/- division%- modulo=- assignment<- less than<=- less than equal to>- greater than>=- greater than equal to==- equal!=- not equal&&- and||- or
check out examples folder for examples