af43565322
The aim here is to improve coverage of the code.
8 lines
105 B
Python
8 lines
105 B
Python
# test micropython-specific decorators
|
|
|
|
@micropython.bytecode
|
|
def f():
|
|
return 'bytecode'
|
|
|
|
print(f())
|