2019-08-18 20:59:27 -04:00
|
|
|
import micropython
|
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
|
2019-08-18 20:59:27 -04:00
|
|
|
@micropython.native
|
|
|
|
def native_x(x):
|
|
|
|
print(x + 1)
|
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
|
2019-08-18 20:59:27 -04:00
|
|
|
@micropython.native
|
|
|
|
def native_y(x):
|
|
|
|
print(x + 1)
|
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
|
2019-08-18 20:59:27 -04:00
|
|
|
@micropython.native
|
|
|
|
def native_z(x):
|
|
|
|
print(x + 1)
|