-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename long to int64? #515
Comments
It's up to you :) |
I don't want Jou to use |
I think integer types should be:
Advantages:
Disadvantages:
I don't want to use I don't want to use As already mentioned, I want to use As described in this issue, I don't want to use |
C has
long
that is 32 bits on Windows and 64 bits on many other platforms. Jou haslong
which is always 64 bits. This causes confusion when combining C code with Jou code. That's bad, because working with C is a very important feature in Jou.I think Jou
long
should be renamed toint64
. @littlewhitecloud What do you think?The text was updated successfully, but these errors were encountered: