
buzz
A small/lightweight statically typed scripting language
Statically typed
Find out bugs in your IDE rather than in production
JIT compiled
Uses MIR, a fast and lightweight JIT compiler
Unambiguous
No implicit behavior or unexpected type coercion
Small in size and complexity
Does not take much space on your drive or in your mind
Fibers
Single threaded cooperative multitasking
import "std";
| 👨🚀 buzz is a simple unambiguous scripting language
object Person {
str name,
int age = 18,
fun growUp() > int {
this.age = this.age + 1;
return this.age;
}
}
fun main([str] args) > void {
Person me = Person{
name = "Giann",
age = 36,
};
print("Hello I'm {me.name} and I'm {me.age}.");
}