mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-18 10:53:45 +01:00
Fix paranthesis (#13)
This commit is contained in:
parent
6c709f8e65
commit
710547df83
1 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ local function greetings(name)
|
||||||
return greetingsHelper(name)
|
return greetingsHelper(name)
|
||||||
end
|
end
|
||||||
|
|
||||||
print(greetings("Alexander") -- ok
|
print(greetings("Alexander")) -- ok
|
||||||
print(greetings({name = "Alexander"}) -- not ok
|
print(greetings({name = "Alexander"}) -- not ok
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue