Get started with the Bloa programming language
The latest source code is available on GitHub. You can clone the repository and build Bloa yourself.
git clone https://github.com/bloa-lang/bloa-src.git
cd bloa-src
mkdir build && cd build
cmake ..
make
After building, you can install Bloa system-wide or run it locally.
mkdir build && cd build
cmake ..
make
./bloa ../examples/hello.bloa
Coming soon: Pre-built packages for popular package managers.
APT packages coming soon
Homebrew formula coming soon
MSI installer coming soon
Explore Bloa with these example scripts:
say("Hello, World!")
Save as hello.bloa and run with ./bloa hello.bloa
a = ask("Enter first number: ")
b = ask("Enter second number: ")
sum = int(a) + int(b)
say("Sum: " + str(sum))
An interactive calculator script
If you encounter any issues during installation or have questions: