summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/int_big_cmp.py
blob: 7cb7412bdfb19b4acea87d8b8912bb416f009e5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# test bignum comparisons

i = 1 << 65

print(i == 0)
print(i != 0)
print(i < 0)
print(i > 0)
print(i <= 0)
print(i >= 0)