You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
d1c3788375
Addresses issue #1117.
14 lines
167 B
Python
14 lines
167 B
Python
# check loading constants
|
|
|
|
@micropython.native
|
|
def f():
|
|
return 123456789012345678901234567890
|
|
|
|
print(f())
|
|
|
|
@micropython.native
|
|
def g():
|
|
return 1.2
|
|
|
|
print(g())
|