Numbers
#numberformat #integer
Overview
As default, Int reflects the system bit size;
If system is 32 bit Int works as In32
if system is 64bit Int works as Int64
Additionally, you can choose whatever type of Int (Int16, Int32, Int64).
Things to learn
Integer Types
Integer 16/32/64 are not interchangable. Once you defined the format you cannot change it afterwards. Because each one needs different space. If you define all as integer 64 you will end up with much space than you need and that will increase you file size thus makes the app work slower.
Integer 16
Integer 32
Integer 64
Notes
String + String = Concatenation
Number + Number = Addition
Decimal Numbers = Double
Sample Codes
Changes string and decimal to integer
Sources
Videos
Articles / Documents
Last updated