Problem with long?
in
Programming Questions
•
1 year ago
Sorry, this is probably a very dumb question, but I've never used long. The reference said that long uses 64 bits instead of int's 32. I tried this out:
- long test = 0xfffffffff; // 9 fs
- void setup() {
- size(100, 100);
- println(test);
- }
1