-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_basics.go
More file actions
34 lines (26 loc) · 788 Bytes
/
about_basics.go
File metadata and controls
34 lines (26 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package go_koans
func aboutBasics() {
assert(true == true) // what is truth?
assert(true != false) // in it there is nothing false
var i int = 1
assert(i == 1.0000000000000000000000000000000000000) // precision is in the eye of the beholder
k := 1 //short assignment can be used, as well
assert(k == 1.0000000000000000000000000000000000000)
assert(5%2 == 1)
assert(5*2 == 10)
assert(5^2 == 7)
var x int
assert(x == 0) // zero values are valued in Go
var f float32
assert(f == 0) // for types of all types
var s string
assert(s == "") // both typical or atypical types
var c struct {
x int
f float32
s string
}
assert(c.x == 0) // and types within composite types
assert(c.f == 0) // which match the other types
assert(c.s == "") // in a typical way
}