Update syntax-goto-statement.md

This commit is contained in:
rafa_br34 2022-02-06 01:58:24 -03:00 committed by GitHub
parent 80b5401dbc
commit c02a8ab351
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ while RunLoop do
end end
end end
``` ```
The problems that this solution has are: The problems that this solution has are:<br>
Messy: In a bigger scale this will get messy and confusing.<br> Messy: In a bigger scale this will get messy and confusing.<br>
Uneeded checks: Why to do those checks when we could just jump out directly? Uneeded checks: Why to do those checks when we could just jump out directly?
@ -112,4 +112,4 @@ while true do
end end
end end
end end
``` ```