mirror of
https://github.com/micropython/micropython.git
synced 2026-01-10 14:07:14 +01:00
8 lines
105 B
Python
8 lines
105 B
Python
# test micropython-specific decorators
|
|
|
|
@micropython.bytecode
|
|
def f():
|
|
return 'bytecode'
|
|
|
|
print(f())
|