User:Racing Kings/drafts
Appearance
Haxe
[change | change source]Haxe is a high-level programming language that targets many different computing-platforms. It can be compiled to source code for many other programming languages, including C++ and Python, but it can also be compiled to virtual machines such as JVM. There is also a interpreted mode, for quick testing.
Hello World
[change | change source]In Haxe, Hello World can be written like this:
class Main {
static public function main():void {
trace("Hello World!");
}
}