2018-09-27 23:37:33 +10:00
|
|
|
# test loading constants in native functions
|
|
|
|
|
2021-04-19 22:22:44 -07:00
|
|
|
|
2018-09-27 23:37:33 +10:00
|
|
|
@micropython.native
|
|
|
|
def f():
|
2021-04-19 22:22:44 -07:00
|
|
|
return b"bytes"
|
|
|
|
|
|
|
|
|
2018-09-27 23:37:33 +10:00
|
|
|
print(f())
|
|
|
|
|
2021-04-19 22:22:44 -07:00
|
|
|
|
2018-09-27 23:37:33 +10:00
|
|
|
@micropython.native
|
|
|
|
def f():
|
|
|
|
@micropython.native
|
|
|
|
def g():
|
|
|
|
return 123
|
2021-04-19 22:22:44 -07:00
|
|
|
|
2018-09-27 23:37:33 +10:00
|
|
|
return g
|
2021-04-19 22:22:44 -07:00
|
|
|
|
|
|
|
|
2018-09-27 23:37:33 +10:00
|
|
|
print(f()())
|