Getting Started
Quick start
Say hello to the world.
Hello World!
Cambo use .kh as its default file extension, which is short and memerable.
main.kh
int main(string args[]){
print("hello, world!");
return 0;
}
Then you can compile with:
Terminal
cambo main.kh
Cambo compiler will create an executable file named a.out, so you can run
Terminal
./a.out
Finally the phrase hello, world! will be printed in your teminal
Terminal
hello, world!