removed an unnecesarry white space

This commit is contained in:
caminsha 2020-02-27 23:38:03 +01:00
parent 5d1c72515c
commit d7de2446b7

View File

@ -211,7 +211,7 @@ switch(value) {
// Iterative statements // Iterative statements
// For Statements - Again, the same syntax as in Java // For Statements - Again, the same syntax as in Java
for(int i = 0; i < 5; i ++){ for(int i = 0; i < 5; i++){
print(i); // prints from 0 to 4 print(i); // prints from 0 to 4
} }