Files
TencentOS-tiny/components/language/micropython/tests/feature_check/native_check.py
2022-09-29 12:10:37 +08:00

9 lines
111 B
Python

# this test for the availability of native emitter
@micropython.native
def f():
pass
f()
print("native")