-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
131 lines (129 loc) · 4.07 KB
/
main.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
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
package main
import (
"go-by-example/internal/array"
atomic_counters "go-by-example/internal/atomic-counters"
base64_encoding "go-by-example/internal/base64-encoding"
channelBuffering "go-by-example/internal/channel-buffering"
channelDirections "go-by-example/internal/channel-directions"
channelRange "go-by-example/internal/channel-range"
channelSync "go-by-example/internal/channel-sync"
"go-by-example/internal/channels"
closingChannels "go-by-example/internal/closing-channels"
"go-by-example/internal/closures"
"go-by-example/internal/constant"
defet "go-by-example/internal/defer"
"go-by-example/internal/envs"
"go-by-example/internal/epoch"
"go-by-example/internal/errors"
execing_processes "go-by-example/internal/execing-processes"
"go-by-example/internal/exit"
_for "go-by-example/internal/for"
_func "go-by-example/internal/func"
multiReturn "go-by-example/internal/func-multiple-return"
"go-by-example/internal/generics"
"go-by-example/internal/goroutines"
"go-by-example/internal/hello"
"go-by-example/internal/interfaces"
"go-by-example/internal/json"
"go-by-example/internal/maps"
"go-by-example/internal/methods"
"go-by-example/internal/mutex"
nonBlockingChannels "go-by-example/internal/non-blocking-channels"
number_parsing "go-by-example/internal/number-parsing"
"go-by-example/internal/panicpack"
"go-by-example/internal/pointers"
"go-by-example/internal/random"
_range "go-by-example/internal/range"
"go-by-example/internal/ratelimiting"
"go-by-example/internal/recovery"
"go-by-example/internal/recursion"
regular_expressions "go-by-example/internal/regular-expressions"
"go-by-example/internal/runes"
selectExamples "go-by-example/internal/select"
"go-by-example/internal/sha256"
"go-by-example/internal/signals"
"go-by-example/internal/slices"
sort_functions "go-by-example/internal/sort-functions"
"go-by-example/internal/sorting"
stateful_goroutines "go-by-example/internal/stateful-goroutines"
string_formatting "go-by-example/internal/string-formatting"
string_functions "go-by-example/internal/string-functions"
structEmbedding "go-by-example/internal/struct-embedding"
"go-by-example/internal/structs"
_switch "go-by-example/internal/switch"
text_templates "go-by-example/internal/text-templates"
"go-by-example/internal/tickers"
time_formatting "go-by-example/internal/time-formatting"
time_package "go-by-example/internal/time-package"
"go-by-example/internal/timeouts"
"go-by-example/internal/timers"
"go-by-example/internal/values"
"go-by-example/internal/variables"
"go-by-example/internal/variadic"
"go-by-example/internal/waitgroups"
workerPool "go-by-example/internal/worker-pool"
)
func main() {
random.RunSample()
time_formatting.RunSample()
regular_expressions.RunSample()
envs.RunSample()
text_templates.RunSample()
json.RunSample()
epoch.RunSample()
string_formatting.RunSample()
base64_encoding.RunSample()
number_parsing.RunSample()
sha256.RunSample()
time_package.RunSample()
string_functions.RunSample()
recovery.RunSample()
defet.RunSample()
sort_functions.RunSample()
sorting.RunSample()
stateful_goroutines.RunSample()
mutex.RunSample()
atomic_counters.RunSample()
ratelimiting.RunSample()
waitgroups.RunSample()
workerPool.RunSample()
tickers.RunSample()
timers.RunSample()
channelRange.RunSample()
hello.RunSample()
values.RunSample()
variables.RunSample()
constant.RunSample()
_for.RunSample()
_switch.RunSample()
array.RunSample()
slices.RunSample()
maps.RunSample()
_range.RunSample()
_func.RunSample()
multiReturn.RunSample()
variadic.RunSample()
closures.RunSample()
recursion.RunSample()
pointers.RunSample()
runes.RunSample()
structs.RunSample()
methods.RunSample()
interfaces.RunSample()
structEmbedding.RunSample()
generics.RunSample()
errors.RunSample()
goroutines.RunSample()
channels.RunSample()
channelBuffering.RunSample()
channelSync.RunSample()
channelDirections.RunSample()
selectExamples.RunSample()
timeouts.RunSample()
nonBlockingChannels.RunSample()
closingChannels.RunSample()
execing_processes.RunSample()
signals.RunSample()
panicpack.RunSample()
exit.RunSample()
}