package internal import ( "fmt" "time" ) func Add(a, b int) { time.Sleep(time.Second) fmt.Println("Sum =", a+b) } func Sub(a, b int) { time.Sleep(time.Second) fmt.Println("Sub =", a-b) }