remove number for source

This commit is contained in:
Mark McGranaghan
2012-10-07 02:00:54 -04:00
parent beaad143c4
commit 2c4dea2b8e
134 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
// ## Inline Assignment
package main
import "fmt"
func main() {
// `x := val` is shorthand for `var x type = val`.
x := "Hello assignment"
fmt.Println(x)
}

View File

@@ -0,0 +1,2 @@
$ go run inline-assignment.go
Hello assignment