I wonder if there is a difference in performance between
checking if a value is greater / smaller than another
for(int x = 0; x <
Wonder if nested for each test, same results ?
for(int x = 0; x < y; x++) { for(int x2 = 0; x2 < y; x2++) {} } for(int x = 0; x != y; x++) { for(int x2 = 0; x2 != y; x2++) {} }