1 2 3 4 5 6 7 8 9 10
# test import within viper function @micropython.viper def f(): import micropython print(micropython.const(1)) from micropython import const print(const(2)) f()