Nodiex

Results 3 issues of Nodiex

Please consider the following code: ```haxe import sys.io.Process; class Main { static function main():Void { trace(execb("env")); } public static function exec(cmd:String):String { var args:Array=cmd.split(" "); cmd=args.shift(); return exec_ar(cmd,args); } public...

I was relying on some code in polygonal_core... Any reason why you removed that repo? It had some great code in it. Thank you for these repos. de.polygonal.core.math.random.RNG de.polygonal.core.math.random.ParkMiller

If there is null pointer exception in: ``` @async function myFunc() { var v:Dynamic=null; v.helloWorld(); } try { @await myFunc(); } catch(e:Dynamic) { trace(e); } ``` Nothing is caught or...