6 lines
64 B
Go
6 lines
64 B
Go
2 years ago
|
package main
|
||
|
|
||
|
func AddStuff(a int, b int) int {
|
||
|
return a + b
|
||
|
}
|