mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
Update syntax.md (#46)
Add documentation for named arguments in function types.
This commit is contained in:
parent
b20601af89
commit
50c22abae0
1 changed files with 6 additions and 0 deletions
|
@ -142,6 +142,12 @@ function foo(x: number, y: number): (number, string)
|
|||
end
|
||||
```
|
||||
|
||||
Note that function types are specified without the argument names in the examples above, but it's also possible to specify the names (that are not semantically significant but can show up in documentation and autocomplete):
|
||||
|
||||
```lua
|
||||
local callback: (errorCode: number, errorText: string) -> ()
|
||||
```
|
||||
|
||||
Table types are specified using the table literal syntax, using `:` to separate keys from values:
|
||||
|
||||
```lua
|
||||
|
|
Loading…
Add table
Reference in a new issue