8 lines
115 B
Go
8 lines
115 B
Go
|
package mypackage
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func PrintHello() {
|
||
|
fmt.Println("Hello, Modules! This is mypackage speaking!")
|
||
|
}
|