Another trick to use is whenever you *intend* to use
the >= operator (which is *not* greater than or equals),
instead type > = (note the space). This way you can
scan your code and if any ">=" exist, you know you
messed up and probably meant => instead (the Spin
greater or equals). Ditto for <=; use < = instead.
Comments
} then it works.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Who says you have to have knowledge to use it?
I've killed a fly with my bare mind.
Another trick to use is whenever you *intend* to use
the >= operator (which is *not* greater than or equals),
instead type > = (note the space). This way you can
scan your code and if any ">=" exist, you know you
messed up and probably meant => instead (the Spin
greater or equals). Ditto for <=; use < = instead.