A magical, high performance programming language for game development.


Playground

Enter some simple Kit code here. The result will be compiled to JavaScript via Emscripten, then run in your browser. (See here for some ideas.)

struct Greeting {
    var firstWord: CString = "Hello";
    var secondWord: CString = "you";
}

function main() {
    var greeting = struct Greeting { secondWord: "world" };
    printf("%s, %s!", greeting.firstWord, greeting.secondWord);
}


loading

(Output will be shown here)