mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 01:10:36 +02:00
Because this port now supports multiple architectures. Signed-off-by: Damien George <damien@micropython.org>
17 lines
187 B
Python
17 lines
187 B
Python
import micropython
|
|
|
|
|
|
@micropython.native
|
|
def native_x(x):
|
|
print(x + 1)
|
|
|
|
|
|
@micropython.native
|
|
def native_y(x):
|
|
print(x + 1)
|
|
|
|
|
|
@micropython.native
|
|
def native_z(x):
|
|
print(x + 1)
|