We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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