1# test micropython-specific decorators
2
3
4@micropython.bytecode
5def f():
6    return "bytecode"
7
8
9print(f())
10