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())
|