2018-09-27 09:37:33 -04:00
|
|
|
# test loading constants in native functions
|
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-09-27 09:37:33 -04:00
|
|
|
@micropython.native
|
|
|
|
def f():
|
2020-03-22 22:26:08 -04:00
|
|
|
return b"bytes"
|
|
|
|
|
|
|
|
|
2018-09-27 09:37:33 -04:00
|
|
|
print(f())
|
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-09-27 09:37:33 -04:00
|
|
|
@micropython.native
|
|
|
|
def f():
|
|
|
|
@micropython.native
|
|
|
|
def g():
|
|
|
|
return 123
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-09-27 09:37:33 -04:00
|
|
|
return g
|
2020-03-22 22:26:08 -04:00
|
|
|
|
|
|
|
|
2018-09-27 09:37:33 -04:00
|
|
|
print(f()())
|