Skip to content

Commit 6eaf468

Browse files
committed
empty
1 parent da327e4 commit 6eaf468

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

107-Integers/integers.gop

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// int type represents a whole number, which can be positive or negative. The
22
// 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.
55
//
66
// 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
88
// the uint type should be used unless you need a specific size.
99
//
1010
// For int 20 values can also be expressed in hex (0x14), octal (0o24), and binary notation (0b0010100).

0 commit comments

Comments
 (0)