mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
parent
26be211e5d
commit
cbc99c3222
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ To return no values or more than one, you need to wrap the return type position
|
|||
|
||||
```lua
|
||||
local no_returns: (number, string) -> ()
|
||||
local returns_boolean_and_string: (nunber, string) -> (boolean, string)
|
||||
local returns_boolean_and_string: (number, string) -> (boolean, string)
|
||||
|
||||
function foo(x: number, y: number): (number, string)
|
||||
return x + y, tostring(x) .. tostring(y)
|
||||
|
|
Loading…
Add table
Reference in a new issue