We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from ltypes import i8, i16, i32, i64 u: i64 = i64(-18) print(u) x: i32 = i32(-18) print(x) y: i16 = i16(-18) print(y) z: i8 = i8(-18) print(z)
This prints:
$ PYTHONPATH=../src/runtime/ltypes python a.py -18 -18 -18 -18 $ lpython a.py -18 -18 65518 238
The text was updated successfully, but these errors were encountered:
i8
i16
czgdp1807
Successfully merging a pull request may close this issue.
This prints:
The text was updated successfully, but these errors were encountered: