| Crates.io | paijorot |
| lib.rs | paijorot |
| version | 0.1.0 |
| created_at | 2025-05-10 15:31:07.149522+00 |
| updated_at | 2025-05-10 15:31:07.149522+00 |
| description | Paijorot is a simple interpreted programming language implemented in Rust. It's designed as a hobby project with unique 'brainrot' syntax. ***(FULLY AI WRITTEN)*** |
| homepage | |
| repository | https://github.com/lordpaijo/paijorot |
| max_upload_size | |
| id | 1668472 |
| size | 33,967 |
Paijorot is a simple interpreted programming language implemented in Rust. It's designed as a hobby project with unique "brainrot" syntax. (FULLY AI WRITTEN)
yap "Hello World"; // Equivalent to Rust's println!()
ts x pmo 42; // Equivalent to "let x = 42;" in Rust
gyat numbers {1, 2, 3, 4, 5}; // Declare an array
hawk add(a, b) tuah a + b; // Define a function that returns a + b
// Infinite loop (until break)
goon
// code here
sybau; // break
edge
// For loop (20 iterations)
goon(20)
// code here
edge
ts user_input pmo yeet; // Read user input into variable
yap "Hello, world!";
ts x pmo 10;
ts y pmo 5;
hawk add(a, b) tuah a + b;
yap "The sum is:";
yap add(x, y);
yap "Enter your name:";
ts name pmo yeet;
yap "Hello, ";
yap name;
goon(3)
yap "Loop iteration";
edge
Install the interpreter:
cargo install paijorot
Run a Paijorot program:
paijorot example.paijorot
yap - Print to standard outputts - Declare a variablepmo - Assign a valuegyat or gyatt - Declare an arrayhawk - Define a functiontuah - Return a valuegoon - Begin an infinite loopgoon(n) - Begin a loop for n iterationsedge - End a loop blockyeet - Read user inputsybau - Break out of the current loop+ - Addition- - Subtraction* - Multiplication/ - DivisionEnjoy programming with Paijorot!