8 lines
105 B
Python
8 lines
105 B
Python
|
# test micropython-specific decorators
|
||
|
|
||
|
@micropython.bytecode
|
||
|
def f():
|
||
|
return 'bytecode'
|
||
|
|
||
|
print(f())
|