Parse integers with unsigned ('u') suffix

This commit is contained in:
Mikhail Zarechenskiy
2018-05-24 14:28:29 +03:00
parent e5958d228a
commit bf5f710f39
6 changed files with 776 additions and 540 deletions
+13
View File
@@ -0,0 +1,13 @@
val array = array<Any>(
1u,
0u,
1_1u,
-2u,
0xFFu,
0b100u,
3.14u,
1e1u,
1.0e1u,
2_2.0fu,
6.022_137e+2_3fu
)