diff options
-rw-r--r-- | processing.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/processing.html.markdown b/processing.html.markdown index d0952e96..d7b0d600 100644 --- a/processing.html.markdown +++ b/processing.html.markdown @@ -211,7 +211,7 @@ switch(value) { // Iterative statements // 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 } |