learning_go/diff/_switch/internal/switchpkg/switch.go
2025-06-30 06:58:29 +03:00

9 lines
92 B
Go

package switchpkg
import (
"fmt"
)
func Say(name string) {
fmt.Printf("Hello %s",name)
}