19 Sep
2008
19 Sep
'08
9:13 a.m.
On Thu, Sep 18, 2008 at 9:28 PM, Kassen
2008/9/19 Paul Reiners
What is the maximum value of an int in ChucK? Is there a symbolic constant for it?
New in the latest version!
<<
>>;
For reference though, it uses the "long" keyword in C++ to represent integers. So on 32-bit computers the max should be 0x7FFFFFFF, or 2147483647. On 64-bit computers it will be 0x7FFFFFFFFFFFFFFFFF, or 9223372036854775807. Steve