a wild space appears

This commit is contained in:
Mark McGranaghan 2012-09-20 19:19:13 -07:00
parent 375fc72916
commit 867f476bd5

View File

@ -1,18 +1,18 @@
// Go has various value types, including strings,
// different types of numbers, booleans, etc.
// Go has various value types, including strings,
// different types of numbers, booleans, etc.
package main
import "fmt"
func main() {
fmt.Println("Hello world") // Strings.
fmt.Println("Hello world") // Strings.
fmt.Println("Hello " + "other")
fmt.Println("1+1 =", 1+1) // Integers and floats.
fmt.Println("1+1 =", 1+1) // Integers and floats.
fmt.Println("7.0/3.0 =", 7.0/3.0)
fmt.Println(true && false) // Booleans.
fmt.Println(true && false) // Booleans.
fmt.Println(true || false)
fmt.Println(!true)
}