summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/builtin_hex.py
blob: 95d74257ecf362e8ca24501febd0688073ec5e02 (plain) (blame)
1
2
3
4
5
6
7
8
9
# test builtin hex function

print(hex(1))
print(hex(-1))
print(hex(15))
print(hex(-15))

print(hex(12345))
print(hex(0x12345))