πΆ Bella β A simple functional programming language β Written in Gleam!
Bella is a simple functional programming language, written in Gleam. Still very much a work-in-progress. π§
Download the appropriate executable for your system and add it to PATH, then you can:
bella ./examples/hello_world.bella
bella create my_project
cd my_project
bella run
You will need:
gleam run ./examples/hello_world.bella
You can also compile an executable:
# Build
gleam clean && gleam build
# Compile
deno compile -o ./build/bella --unstable --allow-all ./build/dev/javascript/bella/main.ts
# Run
./build/bella ./examples/countdown.bella