diff --git a/src/02-values.go b/src/02-values.go index 8e54d1a..00cd2e3 100644 --- a/src/02-values.go +++ b/src/02-values.go @@ -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) }