buzz icon indicating copy to clipboard operation
buzz copied to clipboard

👨‍🚀 buzz, A small/lightweight statically typed scripting language

Results 141 buzz issues
Sort by recently updated
recently updated
newest added

Generational GC

feature
vm

REPL

feature
tooling

LSP https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/

tooling

```buzz fun iCanFail() > !num { | ... } ```

language

```buzz object A { const num assignedOnce; } ```

language
immutability

Tail calls

improvement
feature
vm

When less than 255, `u8`, then `u16`, etc.

improvement
vm

Zig-like `defer` keyword that will execute an expression just before exiting the current function. ```buzz fun main() > void { File file = File.open("hello", mode: FileMode.read); defer file.close(); |... }...

feature
language

```buzz object A { fun toString() > str -> "hello"; } print("{A{}}"); | -> "hello"; ```

feature
language

```buzz [num] numbers = []; {str, str} map = {}; fun count([str] list) > num -> list.len(); count([]) == 0; ```

language