From 375fc729169b35488088f79f355bca087ecb3442 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 20 Sep 2012 19:18:34 -0700 Subject: [PATCH] less --- src/02-values.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/02-values.go b/src/02-values.go index 4955f6e..8e54d1a 100644 --- a/src/02-values.go +++ b/src/02-values.go @@ -6,13 +6,13 @@ package main import "fmt" func main() { - fmt.Println("Hello world") // Strings - you already saw these. + fmt.Println("Hello world") // Strings. fmt.Println("Hello " + "other") fmt.Println("1+1 =", 1+1) // Integers and floats. 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) }