9 lines
107 B
Python
9 lines
107 B
Python
|
# Test freezing viper code.
|
||
|
|
||
|
import micropython
|
||
|
|
||
|
|
||
|
@micropython.viper
|
||
|
def viper_add(x, y):
|
||
|
print(x + y)
|