mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 04:25:34 -04:00
10 lines
139 B
Python
10 lines
139 B
Python
# test builtin chr (whether or not we support unicode)
|
|
|
|
print(chr(65))
|
|
|
|
try:
|
|
chr(0x110000)
|
|
except ValueError:
|
|
print("ValueError")
|
|
|