2019-08-19 10:59:27 +10:00
|
|
|
import micropython
|
|
|
|
|
2020-02-27 15:36:53 +11:00
|
|
|
|
2019-08-19 10:59:27 +10:00
|
|
|
@micropython.native
|
|
|
|
def native_x(x):
|
|
|
|
print(x + 1)
|
|
|
|
|
2020-02-27 15:36:53 +11:00
|
|
|
|
2019-08-19 10:59:27 +10:00
|
|
|
@micropython.native
|
|
|
|
def native_y(x):
|
|
|
|
print(x + 1)
|
|
|
|
|
2020-02-27 15:36:53 +11:00
|
|
|
|
2019-08-19 10:59:27 +10:00
|
|
|
@micropython.native
|
|
|
|
def native_z(x):
|
|
|
|
print(x + 1)
|