forked from cdarwin/go-koans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_basics.go
34 lines (26 loc) · 876 Bytes
/
about_basics.go
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(__bool__ == true) // what is truth?
assert(__bool__ != false) // in it there is nothing false
var i int = __int__
assert(i == 1.0000000000000000000000000000000000000) // precision is in the eye of the beholder
k := __int__ //short assignment can be used, as well
assert(k == 1.0000000000000000000000000000000000000)
assert(5%2 == __int__)
assert(5*2 == __int__)
assert(5^2 == __int__)
var x int
assert(x == __int__) // zero values are valued in Go
var f float32
assert(f == __float32__) // for types of all types
var s string
assert(s == __string__) // both typical or atypical types
var c struct {
x int
f float32
s string
}
assert(c.x == __int__) // and types within composite types
assert(c.f == __float32__) // which match the other types
assert(c.s == __string__) // in a typical way
}