mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 12:32:21 +00:00
16 lines
261 B
Go
16 lines
261 B
Go
// Copyright © 2017 ChaiShushan <chaishushan{AT}gmail.com>.
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
|
|
// +build ignore
|
|
// +build go1.10
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main()
|
|
|
|
var V int
|
|
|
|
func F() { fmt.Printf("Hello, number %d\n", V) }
|