gobuch/quality/unittest/math/add.go

7 lines
91 B
Go
Raw Normal View History

2020-08-21 04:26:40 +00:00
package math
// Add adds two integer values.
func Add(a int, b int) int {
return a + b
}