-
# Structure of the top-level - Haxe - The Cross-platform Toolkit
Haxe is an open source toolkit based on a modern, high level, strictly typed programming language.
[https://haxe.org/manual/target-cp…
-
I suggest porting Haxe language's libraries, since it's a simple language, and they're mainly focused on games. or creating a binding to the c++ target library (haxe can compile to multiple targets)
…
-
The first goal is to have the compiler written in Haxe and generating the corresponding OCaml code, allowing for a more familiar syntax for potential contributors and compiler team. At longer term, th…
-
It seems like `target-name != cpp` is failing even though I am building in CPP mode... any ideas if this is a linux limitation of haxe or what?
-
I'm on Windows7 64-bit
Haxe 2.10
nme 3.4.4
hxcpp 2.10
and using haxelib version of EmbedAssets lib
This is my error log for windows target:
C:\Motion-Twin\Haxe\lib\EmbedAssets/1,0/embed/assets/Resour…
-
I was just thinking that the Readme does not list TS libraries tested/used against, users should be encouraged to submit these with notes? By creating a list of libraries it shows feasibility and hel…
-
Let's assume we have this Haxe method that has one optional argument followed with a required one:
```haxe
function foo(optInt:Int = 4, reqString:String) {
// ...
}
```
In Haxe this is vali…
-
Here is a sample code:
```
class Foo
{
public static function main()
{
var json = haxe.Json.parse("{\"array\":[\"Hello\"]}");
var field = Reflect.field(json, "array");
…
-
While trying to follow the example code
```haxe
var script = "
var sum = 0;
for( a in angles )
sum += Math.cos(a);
sum;
";
var parser = new hscript.Parser();
var program = parser.pars…
-
I'm trying to use this plugin in a Mac and can't get a run config or debug config to work...
IntelliJ 2017.2.2
Haxe Toolkit Support 0.11.2
OSX El Capitan 10.11.6
Haxe 3.4.5
Haxelib 3.3.0
openfl …