mirror of
https://github.com/micropython/micropython.git
synced 2025-09-09 11:20:48 +02:00
12 lines
187 B
Python
12 lines
187 B
Python
try:
|
|
import ujson as json
|
|
except ImportError:
|
|
try:
|
|
import json
|
|
except ImportError:
|
|
import sys
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
print(json.dumps(1.2))
|