Added a sample file for haxe

This commit is contained in:
Jason O'Neil 2011-11-03 13:42:50 +08:00
commit c1337be88f

View file

@ -0,0 +1,8 @@
class MyHaxeClass {
public HelloWorld:Void()
{
// Say Hello!
var greeting = "Hello";
trace(greeting + " World");
}
}