9 lines
111 B
Go
9 lines
111 B
Go
package internal
|
|
|
|
import "fmt"
|
|
|
|
// Hello is a internal function
|
|
func Hello() {
|
|
fmt.Println("hello, world.")
|
|
}
|