I'm trying to compile a simple hello world Haxe example in MonoDevelop on osx.
class Test {
static function main() {
trace("Hello World !");
}
}
When I try to build, I'm getting the error: "Invalid class name Test".
I've tried renaming the class in both the hx and hxml files to something else but get the same error but now with the new class name.
Any ideas?