← Back to Docs

🚀 Getting Started

Install The Guardian and build your first language in minutes

Installation

From Source (Recommended)

git clone https://github.com/Taha95-dev/The-Guardian.git
cd The-Guardian
mkdir build && cd build
cmake ..
make -j$(nproc)
sudo make install

Verify Installation

guardianc --version

Your First Language

1. Create a Language File

// my_language.ax
let name = "MyLanguage"
let version = 1.0
println("Hello from " + name + " v" + version)

2. Compile to Bytecode

axiomc my_language.ax my_language.axbin

3. Run on The Guardian VM

guardianc my_language.axbin

Next Steps