learning_go/vars/vars.go
2025-06-30 06:58:29 +03:00

9 lines
107 B
Go

package test_vars
import (
"fmt"
)
func PrintTitle(title string) {
fmt.Printf("Title is %s\n", title)
}