mirror of
https://github.com/micropython/micropython.git
synced 2025-09-09 11:20:48 +02:00
8 lines
105 B
Python
8 lines
105 B
Python
# test micropython-specific decorators
|
|
|
|
@micropython.bytecode
|
|
def f():
|
|
return 'bytecode'
|
|
|
|
print(f())
|