-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
El Dockerr edited this page Oct 17, 2025
·
5 revisions
View on GitHub
- Go to the Releases page
- Download the appropriate binary for your platform
- Add it to your system PATH
- GCC or Clang compiler with C++17 support
- Git (for cloning the repository)
git clone https://github.com/el-dockerr/bodge.git
cd bodge
make all # Linux/macOS
# or
.\make.bat # Windows
Let’s create a simple “Hello World” project:
my-project/
├── .bodge
└── src/
└── main.cpp
#include <iostream>
int main() {
std::cout << "Hello, Bodge!" << std::endl;
return 0;
}
name: Hello World
compiler: g++
output_name: hello
cxx_flags: -std=c++17, -Wall, -O2
sources: src/main.cpp
cd my-project
bodge # Build the project
./hello # Run the executable (Linux/macOS)
# or
hello.exe # Run the executable (Windows)