We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b2da436 + f17dbb2 commit 971576dCopy full SHA for 971576d
Language/Structure/Control Structure/goto.adoc
@@ -46,7 +46,7 @@ goto label; // sends program flow to the label
46
[source,arduino]
47
----
48
for(byte r = 0; r < 255; r++){
49
- for(byte g = 255; g > -1; g--){
+ for(byte g = 255; g > 0; g--){
50
for(byte b = 0; b < 255; b++){
51
if (analogRead(0) > 250){ goto bailout;}
52
// more statements ...
0 commit comments