I’m hoping someone else has run into this.
I’m following the starter tutorial to make sure everything’s working Hello hashlink but I get this strange error:
this doesn’t occur in the previous HelloWorld getting started tutorial.
I don’t yet have enough experience with heaps to understand what could be happing here, so I’m very much out of the loop on this one.
Thanks in advance for any help.
Edit:
The Main.hx is:
class Main extends hxd.App {
override function init() {
var tf = new h2d.Text(hxd.res.DefaultFont.get(), s2d);
tf.text = “Hello Hashlink !”;
}
static function main() {
new Main();
}
}
And it is compiled and run with the following two commands:
haxe .\compile.hxml
hl .\hello.hl
with a compile.hxml of:
-cp src
-lib heaps
-lib hlsdl
-hl hello.hl
-main Main