mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
11 lines
122 B
Python
11 lines
122 B
Python
# test bignum comparisons
|
|
|
|
i = 1 << 65
|
|
|
|
print(i == 0)
|
|
print(i != 0)
|
|
print(i < 0)
|
|
print(i > 0)
|
|
print(i <= 0)
|
|
print(i >= 0)
|