[quote:kpibzfmx]Javascript engines like V8 optimise the event engine
Right, it means that Event Engine is compiled to machine code. But what about the event sheet? Does Event Engine interprets the event sheet?
I mean, even early JS engines were written in very fast C++, but what they did (the interpretation of javascript) was very slow.
The same thing here: Event Engine is very fast, but what it does (the interpretation of event sheet) is at the speed of "interpretation".
For example, if I have a loop in event sheet and I use a global variable "foo" of type "number" there, will this variable infer type, like Javascript does or it will stay "dynamic any type var"?