Skip to content

Commit 268162f

Browse files
committed
Merge branch 'tmorse-dev' into development
2 parents ac0b2b5 + 2d1c192 commit 268162f

File tree

1 file changed

+118
-0
lines changed

1 file changed

+118
-0
lines changed

Go/Readme.md

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
1. Basic Operators
2+
* \+
3+
* \-
4+
* \*
5+
* /
6+
* %
7+
* ++
8+
* --
9+
* =
10+
* +=
11+
* -=
12+
* *=
13+
* /=
14+
* %=
15+
* <<=
16+
* \>>=
17+
* &=
18+
* ^=
19+
* |=
20+
21+
2. Conditions
22+
* ==
23+
* !=
24+
* \>
25+
* \<
26+
* \>=
27+
* <=
28+
29+
3. Data Types
30+
* String
31+
* Boolean
32+
* Int
33+
* Int8
34+
* Int16
35+
* Int32
36+
* Int64
37+
* uInt
38+
* UInt8
39+
* Uint16
40+
* UInt32
41+
* UInt64
42+
* UIntptr
43+
* Byte
44+
* Rune
45+
* Float32
46+
* Float64
47+
* Complex64
48+
* Complex128
49+
50+
4. Strings
51+
* \\'
52+
* \\"
53+
* \\\
54+
* \n
55+
* \r
56+
* \t
57+
* \b
58+
* \ooo
59+
* \xhhh
60+
* Subscripting (Indexing)
61+
* Slicing
62+
* Sprintf
63+
* Sscanf
64+
* Fscanf
65+
* Scanf
66+
67+
5. List
68+
* `New()`
69+
* `Init()`
70+
* `Back()`
71+
* `Front()`
72+
* `InsertAfter()`
73+
* `Len()`
74+
* `MoveAfter()`
75+
* `MoveBefore()`
76+
* `MoveToBack()`
77+
* `PushBack()`
78+
* `PushBackList()`
79+
* `PushFront()`
80+
* `PushFrontList()`
81+
* `Remove()`
82+
83+
6. Array
84+
* `Len()`
85+
86+
7. Slice
87+
* `Len()`
88+
* `cap()`
89+
* `copy()`
90+
* `make()`
91+
* `append()`
92+
93+
8. Structs
94+
95+
9. Statements
96+
* import
97+
* package
98+
* if
99+
* else if
100+
* else
101+
* for
102+
* return
103+
* defer
104+
* break
105+
* goto
106+
* continue
107+
* func
108+
* const
109+
110+
10. Tasks
111+
* Create variables
112+
* Cast variables
113+
* Utilize Nested loops
114+
* Import packages
115+
* Read and write to a file
116+
* Create Functions
117+
* Function recursion
118+
* Create a struct with attributes and methods

0 commit comments

Comments
 (0)