Go functions
Go functions
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package main
import (
	"fmt"
	// "strconv"
	// "math"
	// "reflect"
	// "net/http"
	// "log"
)
func sayMessage(msg string, idx int)  {
	greetings := "Hello"
	fmt.Printf("%v: %v, %v\n", greetings, msg, idx)
}
func sayGreeting(greeting string, name string)  {
	fmt.Printf("%v: %v\n", greeting, name)
}
// a little bit niceier
func niceierSayGreeting(greeting, name string)  {
	fmt.Printf("%v: %v\n", greeting, name)
}
func greetingWithPointer(greeting, name *string)  {
	fmt.Printf("%v: %v\n", *greeting, *name)
	*name = "Ted"
	fmt.Printf("Derefernced name: %v.\n", *name)
}
// variatic parameter, and if such a parameter is used, it needs to
// be specified at the end
func sum(msg string, values ...int)  {
	fmt.Printf("%v, %T\n", values, values)
	result := 0
	for _, v := range values {
		result += v
	}
	fmt.Printf("%v", msg)
	fmt.Printf("Sum of the values is: %v\n", result)
}
func sumWithReturn(msg string, values ...int) (string, int) {
	fmt.Printf("%v, %T\n", values, values)
	result := 0
	for _, v := range values {
		result += v
	}
	fmt.Printf("%v", msg)
	fmt.Printf("Sum of the values is: %v\n", result)
	return msg, result
}
func divide(a, b float64) (float64, error)  {
	if b == 0.0 {
		return 0.0, fmt.Errorf("Cannot divide by zero")
	}
	return a / b, nil
}
func main() {
	for i :=0; i < 5; i++ {
		sayMessage("Hey go!", i)
	}
	fmt.Printf("\n------------------\n")
	sayGreeting("Hello", "Stacey")
	fmt.Printf("\n------------------\n")
	niceierSayGreeting("Hi", "Katka")
	fmt.Printf("\n------------------\n")
	greeting := "Ahoj"
	name := "Tanicka"
	greetingWithPointer(&greeting, &name)
	fmt.Printf("\n------------------\n")
	sum("Has to be specified before variatic parameter\n" ,2, 3, 4, 5)
	fmt.Printf("\n------------------\n")
	m, r := sumWithReturn("Some silly string", 4, 5, 6, 7)
	fmt.Printf("Returning: %v, %v\n", r, m)
	fmt.Printf("\n------------------\n")
	res, err := divide(5.0, 0.0)
	if err != nil {
		fmt.Printf("Here is what happened: %v\n", err)
		return
	}
	fmt.Printf("Division: %v\n", res)
	fmt.Printf("\n------------------\n")
	// anonymus function
	func()  {
		fmt.Printf("This is an anonymous function\n")
	}()
}
# ---------------------------
package main
import (
	"fmt"
	// "strconv"
	// "math"
	// "reflect"
	// "net/http"
	// "log"
)
func main() {
	for i := 0; i < 5; i++ {
		func(x int)  {
			fmt.Printf("Count: %v\n", x)
		}(i)
	}
	f := func(i string)  {
		fmt.Printf("Anonymous as variable: %v\n", i)
	}
	f("XYZ")
	// more complicated example
	var divide func(float64, float64) (float64, error)
	divide = func (a, b float64) (float64, error)  {
		if b == 0.0 {
			return 0.0, fmt.Errorf("Cannot divide by zero!")
		}
		return a / b, nil
	}
	d, err := divide(5.0, 0.1)
	if err != nil {
		fmt.Printf("Error: %v\n", err)
		return
	}
	fmt.Printf("Success division: %v\n", d)
}
 This post is licensed under  CC BY 4.0  by the author.
