Note for Perl programmers using Haxe on compiler error "Float has no field MyVariableName"
You're missing a dot...instead of "for (i in 0..blah)" you want "for (i in 0...blah)" (three dots). Also note that the latter number is excluded from the loop, unlike in Perl.
No comments:
Post a Comment