1 Comment so far

  1. Hi Mo,
    Thanks so much for these excellent tutorials! I’m really enjoying your in-depth explanations.

    For the information of others learning VEX, I wanted to say that another common C method for incrementing and decrementing values works here as well, namely the x++ and x– operations. x++ is the same as x += 1, and x– is the same as x -= 1. These are both commonly used in loops, so it’s likely you explain them in that section, but I like to test things as I learn and discovered this as I was working with this lesson.

    Cheers!

Leave a Reply