9 lines
107 B
Go
9 lines
107 B
Go
package test_vars
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func PrintTitle(title string) {
|
|
fmt.Printf("Title is %s\n", title)
|
|
} |