mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-06 11:30:56 +01:00
Update syntax-if-statements-initializers.md
This commit is contained in:
parent
8ecc5cf1e9
commit
7615e25ed0
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ if local a, b = foo() in b > a then
|
||||||
end
|
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
|
```lua
|
||||||
if local a, b = foo(); b > a then
|
if local a, b = foo(); b > a then
|
||||||
|
|
Loading…
Add table
Reference in a new issue