diff options
author | caminsha <c.96marco@hotmail.com> | 2020-02-27 23:37:43 +0100 |
---|---|---|
committer | caminsha <c.96marco@hotmail.com> | 2020-02-27 23:37:43 +0100 |
commit | 5d1c72515cbffc2e744c2ca2d500f75a3e74f1c3 (patch) | |
tree | 733a2bf7feb536ba339718311a6e3d9d517c1e8d /processing.html.markdown | |
parent | 1a9bbb6159c34df3029c0d55944094afcc91b760 (diff) |
Added short explanation about break statement
Diffstat (limited to 'processing.html.markdown')
-rw-r--r-- | processing.html.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/processing.html.markdown b/processing.html.markdown index cf2dd77d..d0952e96 100644 --- a/processing.html.markdown +++ b/processing.html.markdown @@ -191,6 +191,8 @@ int i = 3; String value = (i > 5) ? "Big" : "Small"; // "Small" // Switch-case structure can be used to check multiple conditions concisely. +// It is important to use the break statement. If the `break`-statement does +// not exist the program executes all the following cases after a case was true. int value = 2; switch(value) { case 0: |