learn_golang/ch5/func_thing.go

6 lines
64 B
Go

package main
func AddStuff(a int, b int) int {
return a + b
}