package mainimport "fmt"func Facade(num int){ if num == 1{ SystemA() }else if num == 2{ SystemB() }else if num == 3 { SystemC() }}func SystemA(){ fmt.Println("A")}func SystemB(){ fmt.Println("B")}func SystemC(){ fmt.Println("C")}