Haxe is mainly usedProgramPut it together for development. For example, if you want to develop flash + PHP applications, that is, the front-end is flash and the backend is Php, then you don't need two development environments. You can use haxe all-inclusive, it is to use haxe to develop flash (Flash 9 is supported), and use haxe to develop PHP. haxe can generate SWF files, PHP files, and JavaScript files. Haha, okay ....
Installation:
1, from the official website (http://haxe.org /? Lang = cn) to download haxe, install Neko before downloading, put haxe and Neko together, and click haxe to install, A motion-twin directory will be generated under your system disk's program files ,,
2. Create a helloworld instance,
Test. HX:
Class test {
Static function main (){
Trace ("haxe test ");
}
}
Compile. hxml
-SwF test.swf
-Main Test
Compile the statement to double compile.hxml. if it succeeds, a test.swf will be generated.
But there is one thing in it: these files must be saved in ANSI format when they are saved. Otherwise, an error will be reported during compilation.