lv_micropython/tests/micropython/native_const.py

14 lines
167 B
Python
Raw Normal View History

# check loading constants
@micropython.native
def f():
return 123456789012345678901234567890
print(f())
@micropython.native
def g():
return 1.2
print(g())