diff --git a/Language/Structure/Control Structure/while.adoc b/Language/Structure/Control Structure/while.adoc index 09b25192..8f349365 100644 --- a/Language/Structure/Control Structure/while.adoc +++ b/Language/Structure/Control Structure/while.adoc @@ -54,6 +54,7 @@ while (var < 200) { // do something repetitive 200 times var++; } +// Here, do whatever comes after the while loop ends ---- -- @@ -69,7 +70,7 @@ while (var < 200) { === See also [role="language"] - + https://www.arduino.cc/reference/en/language/structure/control-structure/break/[Break^] [role="example"] * #EXAMPLE# https://www.arduino.cc/en/Tutorial/BuiltInExamples/WhileStatementConditional[While Loop^]