import std::format;
function main()
{
std::print("Hello {}!\n", "World");
}
Bozon is a general-purpose compiled programming language that aims to provide high performance without sacrificing safety or ease-of-use.
The only tested platforms at the moment are Windows with MSYS2 and Ubuntu 22.04+.
Required libraries:
- LLVM 19.x
- dwarfstack (Windows only)
- libbacktrace (Linux only)
Building is done with cppb
, and uses the latest versions of Clang and LLD by default:
# You may need to do this if you get an error:
$ touch ryu_format.windows.bc
$ touch ryu_format.linux.bc
# Release build:
$ cppb build --build-mode release
# Debug build:
$ cppb build