Update syntax-if-statements-initializers.md

This commit is contained in:
James 2024-02-15 18:25:03 +00:00 committed by GitHub
parent 927dfed81f
commit 32fd23e416
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -67,6 +67,26 @@ end
`Output: Hello World, from Luau!`
If statement initializers are also allowed in `elseif` conditions.
Example:
```lua
local a = false
local function foo()
local b = a
a = true
return b
end
if local a = foo() then
elseif local b = foo() then
print(b)
end
```
`Output: true`
# Drawbacks
Parser recovery may be more fragile due to the `local` keyword.