Update 06_Declarations.md

#1195
This commit is contained in:
Jie Liang
2022-07-18 21:27:49 -05:00
committed by GitHub
parent 69c79b8d02
commit 2128ce6f51

View File

@@ -528,8 +528,8 @@ _ : 参数类型
func f(x: Int = 42) -> Int { return x }
f() // 使
f(7) //
f(x: 7) //
f(x: 7) // 使
f(7) //
```
### 特殊方法 {#special-kinds-of-methods}