Update syntax-if-statements-initializers.md

This commit is contained in:
James 2024-02-08 06:03:22 +00:00 committed by GitHub
parent 7615e25ed0
commit 33a5933eb9
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -50,7 +50,7 @@ end
`Output: true`
When declaring multiple values inside of a condition, only the first condition will be evaluated.
When declaring multiple values inside of a condition, all of the variables will be evaluated.
Example:
@ -60,6 +60,7 @@ local function foo()
end
if local a,b = foo() then
else
print'Hello World, from Luau!'
end
```