8 lines
110 B
Python
8 lines
110 B
Python
|
# check loading constants
|
||
|
|
||
|
@micropython.native
|
||
|
def f():
|
||
|
return 123456789012345678901234567890
|
||
|
|
||
|
print(f())
|