mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +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))
|