Hacker News new | ask | show | jobs
by andremendes 2287 days ago
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).
1 comments

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.