Skip to content

Commit

Permalink
Update 04_Return readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
smallfu6 committed Sep 28, 2024
1 parent 0ea7a3f commit a4e6485
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 a4e6485

Please sign in to comment.