You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 107-Integers/integers.gop
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
// int type represents a whole number, which can be positive or negative. The
2
2
// int type size is platform-dependent and will be either 32 or 64 bits. There are
3
-
// also integer types that have a specific size, such as int8, int16, int32, int64, int128, and
4
-
// int64, but the int type should be used unless you need a specific size.
3
+
// also integer types that have a specific size, such as int8, int16, int32, int64, and
4
+
// int128, but the int type should be used unless you need a specific size.
5
5
//
6
6
// uint type represents a positive whole number. The uint type size is platformdependent and will be either 32 or 64 bits. There are also unsigned integer
7
-
// types that have a specific size, such as uint8, uint16, uint32, uint64, uint128, but
7
+
// types that have a specific size, such as uint8, uint16, uint32, uint64 and uint128, but
8
8
// the uint type should be used unless you need a specific size.
9
9
//
10
10
// For int 20 values can also be expressed in hex (0x14), octal (0o24), and binary notation (0b0010100).
0 commit comments