Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int; //4 bytes -2,147,483,648 to 2,147,483,647
- long; //8 bytes -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
- float; //4 bytes fractions with 6 to 7 decimal digits
- double; //8 bytes fractions with 15 decimal digits
- bool; //1 byte true or false values
- char; //2 byte single quoted character or letter
- string; //2 bytes per character used for phrases, text, or sequences of characters
- //i made a script exactly like this one but without the explanation of when to use said data types a while ago
- //here it is:
- //https://pastebin.com/bvphPRTc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement