Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 224 Bytes

int.md

File metadata and controls

19 lines (16 loc) · 224 Bytes

Int

Int represents an integer. All integer literals inherit Int.

10
-5
# bin
0b100 # 4
# oct
0o10 # 8
# hex
0xff # 255
# exponential
1e3 # 1000

# _ can be inserted for readability
1_000_000 # 1000000