Update syntax-if-statements-initializers.md

This commit is contained in:
James 2024-02-08 06:01:06 +00:00 committed by GitHub
parent 8ecc5cf1e9
commit 7615e25ed0
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -84,7 +84,7 @@ if local a, b = foo() in b > a then
end
```
While Luau is a verbose language that uses keywords for the majority of its syntax, another approach is using semicolons as a separator. This can work well because statements can use semicolons as a separator, which will retain consistency with the language.
While Luau is a verbose language that uses keywords for the majority of its syntax, another approach is using semicolons as a separator. This can work well because statements can use semicolons as a separator, which will retain consistency with the language. The same can be said for the comma, which would be consistent with for loop syntax.
```lua
if local a, b = foo(); b > a then