7 lines
101 B
Go
7 lines
101 B
Go
|
|
package functions
|
||
|
|
|
||
|
|
func sum(first int, second int) (result int) {
|
||
|
|
result = first + second
|
||
|
|
return
|
||
|
|
}
|