update readme

This commit is contained in:
collin 2020-07-07 10:18:18 -07:00
parent 87db0508f4
commit 6144599946

View File

@ -279,7 +279,7 @@ function main() -> field {
Functions can return tuples whose types are specified in the function signature.
```js
function test() -> (u32, u32[2]) {
return 1, [2, 3]
return (1, [2, 3])
}
function main() -> u32[3] {