6 lines
56 B
Go
Raw Normal View History

2026-03-08 15:20:41 +08:00
package utils
func Add(a, b int) int {
return a + b
}