Files
the-way-to-go_ZH_CN/eBook/examples/chapter_9/book/package_mytest.go
yingtaojuzi 16f2309acb when I import the pack1, if I add the ./pack1/pack1, it will fai… (#760)
* when I import the pack1, if I add the ./pack1/pack1, it will failed

* also the import exercise need updating

* the path in this file
2020-02-13 14:49:55 +08:00

15 lines
288 B
Go

package main
import (
"./pack1/pack1"
"fmt"
)
func main() {
var test1 string
test1 = pack1.ReturnStr()
fmt.Printf("ReturnStr from package1: %s\n", test1)
fmt.Printf("Integer from package1: %d\n", pack1.Pack1Int)
// fmt.Printf(“Float from package1: %f\n”, pack1.pack1Float)
}