Perhaps I missed it early on, but every time we have a line of code such as:
for (int32 i = 0; i < count; i++)
The instructor simply changes each “i” simultaneously with some keyboard shortcut, so that at the same time, it becomes:
for (int32 Index = 0; Index < count; Index++)
How can I change the i to Index all at the same time as the instructor is doing? He might’ve mentioned it once early on in the lessons but I’ve been patiently waiting for him to say again how he’s doing it, and he never does.