-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
79 lines (70 loc) · 1.77 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
package main
import (
// "golang-fundamental/loops"
// "golang-fundamental/datatypes"
// "golang-fundamental/operations"
// "golang-fundamental/conditions"
// "golang-fundamental/functions"
// "golang-fundamental/functions"
// "golang-fundamental/structs"
// "golang-fundamental/pointer"
// "golang-fundamental/access-modifier/_import"
"golang-fundamental/pkg"
)
func main() {
// datatypes.Numbers()
// datatypes.Booleans()
// datatypes.Strings()
// datatypes.Variables()
// datatypes.Constants()
// datatypes.Conversions()
// datatypes.TypeDeclarations()
// operations.MathOperations()
// operations.ComparationOperations()
// operations.BooleanOperations()
// datatypes.Arrays()
// datatypes.Slices()
// datatypes.Maps()
// conditions.ConditionalExpressions()
// conditions.SwitchExpressions()
// loops.ForLoops()
// loops.BreakKeyword()
// loops.ContinueKeyword()
// functions.Functions()
// functions.Parameters()
// functions.Returns()
// functions.MultipleReturns()
// functions.NamedReturns()
// functions.Variadics()
// functions.FunctionValues()
// functions.FunctionAsParameters()
// functions.Anonymous()
// functions.Recursive()
// functions.Closure()
// functions.Defer()
// functions.Panic()
// functions.Recover()
// structs.Structs()
// structs.StructMethods()
// structs.Interfaces()
// structs.BlankInterfaces()
// structs.Nil()
// structs.ErrorInterfaces()
// structs.TypeAssertions()
// pointer.Pointer()
// pointer.PointerFunction()
// pointer.PointerMethod()
// _import.Consume()
// pkg.PkgInitialization()
// pkg.PkgOS()
// pkg.PkgFlag()
// pkg.PkgStrings()
// pkg.PkgStrconv()
// pkg.PkgMath()
// pkg.PkgContainerList()
// pkg.PkgContainerRing()
// pkg.PkgSort()
// pkg.PkgTime()
// pkg.PkgReflect()
pkg.PkgRegexp()
}