-
Notifications
You must be signed in to change notification settings - Fork 0
Installation and First Run
Test User edited this page Mar 28, 2026
·
1 revision
This guide gets you from source code to a running KodPix program.
- Linux x86-64
- NASM 2.15+
- GNU
ld
./build.shThe compiler binary is created as ./kdx.
./kdx examples/hello.kdx -o hello
./helloOne-command helper:
./scripts/run_kdx.sh examples/add_two_vars.kdx- Assembly only:
./kdx examples/hello.kdx -S -o hello.s- Object only:
./kdx examples/hello.kdx -c -o hello.ofunction int main() {
println("Hello, KodPix");
return 0;
}
- Language rules:
docs/language/reference.md - Error meanings:
docs/language/error-codes.md - Practical examples:
docs/language/cookbook.md
footer