Source File: ex05/main.go

package main

import (
    "fmt"
    "MY/ex03/testpkg"
)

func main() {
	fmt.Println("Hello World")
    testpkg.Test()
}