A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
3
Task/Function-definition/Go/function-definition-1.go
Normal file
3
Task/Function-definition/Go/function-definition-1.go
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
func multiply(a, b float64) float64 {
|
||||
return a * b
|
||||
}
|
||||
4
Task/Function-definition/Go/function-definition-2.go
Normal file
4
Task/Function-definition/Go/function-definition-2.go
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
func multiply(a, b float64) (z float64) {
|
||||
z = a * b
|
||||
return
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue