mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 03:55:28 +08:00
9 lines
110 B
Go
9 lines
110 B
Go
package pack1
|
|
|
|
var Pack1Int int = 42
|
|
var pack1Float = 3.14
|
|
|
|
func ReturnStr() string {
|
|
return "Hello main!"
|
|
}
|