Download Bloa

Get started with the Bloa programming language

Source Code

The latest source code is available on GitHub. You can clone the repository and build Bloa yourself.

Clone Repository

git clone https://github.com/bloa-lang/bloa-src.git
cd bloa-src
mkdir build && cd build
cmake ..
make
GitHub Repository

Installation

After building, you can install Bloa system-wide or run it locally.

System Requirements

  • C++17 compatible compiler (GCC, Clang, MSVC)
  • CMake 3.16 or higher
  • Standard C++ libraries

Quick Start

  1. 1 Clone the repository
  2. 2 Create a build directory: mkdir build && cd build
  3. 3 Configure with CMake: cmake ..
  4. 4 Build: make
  5. 5 Run: ./bloa ../examples/hello.bloa

Package Managers

Coming soon: Pre-built packages for popular package managers.

Ubuntu/Debian

APT packages coming soon

macOS

Homebrew formula coming soon

Windows

MSI installer coming soon

Try Bloa Now

Explore Bloa with these example scripts:

Hello World

say("Hello, World!")

Save as hello.bloa and run with ./bloa hello.bloa

Simple Calculator

a = ask("Enter first number: ")
b = ask("Enter second number: ")
sum = int(a) + int(b)
say("Sum: " + str(sum))

An interactive calculator script

Need Help?

If you encounter any issues during installation or have questions: