Hacker News new | ask | show | jobs
by 7thaccount 2287 days ago
Does it allow you to release as a single executable binary?
1 comments

Yes. It basically outputs the executable binary for the target you choose when compiling your Haxe code. It means you write Haxe source and the 'compiler' (transpiler, actually) generates code for the choosen target. It will then compile the generated code using the target compiler installed in your system, if necessary (when you target C++, for example).
So how we debug the code? I mean other than various form of logging/dump.
There is solid debugging support for most Haxe targets on VSCode[1].

[1]: https://github.com/vshaxe/vshaxe/wiki/Debugging

This is interesting. Will take a look.