summaryrefslogtreecommitdiffhomepage
path: root/crystal.html.markdown
diff options
context:
space:
mode:
authorStanley Lim <slim679975@gmail.com>2019-11-21 10:54:24 -0500
committerGitHub <noreply@github.com>2019-11-21 10:54:24 -0500
commit2b1e1cca08eac0d4dc8f685dbe98d80683ca9d3a (patch)
tree460bb7d5cbc1141f8e710e3704f6d03dc25ea193 /crystal.html.markdown
parentd4c5ff14cc8a0717f68746b4fe84cfb4efbdecf6 (diff)
parentf1d03b0318a43441bb96bfdaabbd914eaa985879 (diff)
Merge pull request #1 from adambard/master
Merging from master.
Diffstat (limited to 'crystal.html.markdown')
-rw-r--r--crystal.html.markdown24
1 files changed, 13 insertions, 11 deletions
diff --git a/crystal.html.markdown b/crystal.html.markdown
index 8210b443..9fae9da3 100644
--- a/crystal.html.markdown
+++ b/crystal.html.markdown
@@ -25,17 +25,19 @@ true.class #=> Bool
1.class #=> Int32
-# Four signed integer types
-1_i8.class #=> Int8
-1_i16.class #=> Int16
-1_i32.class #=> Int32
-1_i64.class #=> Int64
-
-# Four unsigned integer types
-1_u8.class #=> UInt8
-1_u16.class #=> UInt16
-1_u32.class #=> UInt32
-1_u64.class #=> UInt64
+# Five signed integer types
+1_i8.class #=> Int8
+1_i16.class #=> Int16
+1_i32.class #=> Int32
+1_i64.class #=> Int64
+1_i128.class #=> Int128
+
+# Five unsigned integer types
+1_u8.class #=> UInt8
+1_u16.class #=> UInt16
+1_u32.class #=> UInt32
+1_u64.class #=> UInt64
+1_u128.class #=> UInt128
2147483648.class #=> Int64
9223372036854775808.class #=> UInt64