syntax change

This commit is contained in:
rafa_br34 2022-02-06 17:02:18 -03:00 committed by GitHub
parent c02a8ab351
commit edbb7a826c
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@ end
``` ```
The problems that this solution has are:<br> 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 do those checks when we could just jump out directly?
@ -54,7 +54,7 @@ while true do
end end
end end
end end
LoopEnd: -- Could follow Lua syntax(:LABEL:) :LoopEnd: -- Could follow Lua syntax(:LABEL:)
``` ```
@ -62,12 +62,12 @@ LoopEnd: -- Could follow Lua syntax(:LABEL:)
`<ConstantString>:` Sets a label<br> `:<ConstantString>:` Sets a label<br>
Notes:<br> Notes:<br>
A label can't be used in another scope A label can't be used in another scope
```lua ```lua
function A() function A()
FunctionStart: :FunctionStart:
do do
if Y == Y then if Y == Y then