We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
class Test { var px:Int = Math.floor(20); public function new () { trace(Math.floor(20)); trace(px); } static function main() { new Test(); } }
This trace 0 in Neko, not sure why
Activity