mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 05:11:49 +08:00
upload file
This commit is contained in:
14
eBook/examples/chapter_9/book/package_test.go
Normal file
14
eBook/examples/chapter_9/book/package_test.go
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"./pack1/pack1"
|
||||||
|
)
|
||||||
|
|
||||||
|
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)
|
||||||
|
}
|
Reference in New Issue
Block a user