mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 21:11:12 +02:00
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
9 lines
135 B
Python
9 lines
135 B
Python
try:
|
|
import json
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
print(json.dumps(1.2))
|
|
print(json.dumps({1.5: "hi"}))
|