Skip to content

Commit

Permalink
Merge pull request #795 from smallfu6/main
Browse files Browse the repository at this point in the history
Fixes #772
  • Loading branch information
AmazingAng authored Oct 19, 2024
2 parents f351c2f + a4e6485 commit 8244302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 04_Return/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function returnMultiple() public pure returns(uint256, bool, uint256[3] memory){

## 命名式返回

我们可以在 `returns` 中标明返回变量的名称。Solidity 会初始化这些变量,并且自动返回这些函数的值,无需使用 `return`
我们可以在 `returns` 中标明返回变量的名称。Solidity 会初始化这些变量,并且自动返回这些变量的值,无需使用 `return`

```solidity
// 命名式返回
Expand Down

0 comments on commit 8244302

Please sign in to comment.