This commit is contained in:
Mark McGranaghan 2012-09-20 19:18:34 -07:00
parent c179a25a6a
commit 375fc72916

View File

@ -6,13 +6,13 @@ package main
import "fmt" import "fmt"
func main() { func main() {
fmt.Println("Hello world") // Strings - you already saw these. fmt.Println("Hello world") // Strings.
fmt.Println("Hello " + "other") 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("7.0/3.0 =", 7.0/3.0)
fmt.Println(true && false) // Booleans as you'd expect. fmt.Println(true && false) // Booleans.
fmt.Println(true || false) fmt.Println(true || false)
fmt.Println(!true) fmt.Println(!true)
} }