buzz-language/buzz
👨🚀 buzz, A small/lightweight statically typed scripting language
5289e0753cd274d65344bef1c114284c633536ea6274eebace9a6a82ce182e24468fef88e0b95f370b82af2837f4ded84ae55a41d1591b3a9b75365d
A small/lightweight statically typed scripting language written in Zig
git clone https://github.com/buzz-language/buzz <buzz_dir>git submodule update --initzig build run -- <myscript.buzz> to run a script or zig build run to start the REPL# install locally at ~/.local
zig build -Doptimize=ReleaseSafe install -p ~/.local
# install globally at /usr/local
sudo zig build -Doptimize=ReleaseSafe install -p /usr/local
If you're usage if performance critical (game dev for example), you can build using -Doptimize=ReleaseFast.
Remember to modify PATH to include the bin directory where it is installed. For example, export PATH=PATH:/home/xxx/.local/bin. You can then run buzz with buzz <myscript.buzz>. Or you can simply run buzz to start the REPL.