fefe-script
v1.0.1
Published
A quirky, fun programming language with crazy syntax words. Just for fun and learning purposes.
Readme
🐶 FeFe-Script
FeFe-Script is a hilariously fun programming language with a crazy, unique syntax!
Instead of boring keywords, you'll bork, sniff, woof, and zoom your way through code.
Installation
npm install -g fefe-scriptUsage
Create a file hello.fe:
fe name = "World";
bork "Hello " + name + "!";Run it:
fefe hello.feSyntax Highlights
| FeFe Word | What it does |
|-----------|--------------|
| fe | Declare a variable |
| bork | Print / log to console |
| sniff | If statement |
| woof | Else clause |
| zoom | While loop |
| boop | Define a function |
| yip | Return from a function |
| yes | Boolean true |
| nope | Boolean false |
| fetch | Input (returns empty string for now) |
| pack | (Array literal, coming soon) |
Example
fe num = 42;
sniff (num > 10) {
bork "Big number!";
} woof {
bork "Small number.";
}
fe i = 0;
zoom (i < 3) {
bork i;
i = i + 1;
}
boop greet(who) {
bork "FeFe greets " + who;
}
greet("friend");Why use FeFe-Script?
- 😂 Instantly makes code reviews hilarious
- 🧠 Teaches you how interpreters work
- 🚀 Completely open source and hackable
License
MIT
