package main import ( "fmt" ) func Add(a, b int32) int32 { return a + b } func main() { fmt.Println("test: ", Add(1, 2)) }