drone-micropython-raw 0.1.1

Bindings to MicroPython.
1
2
3
4
5
# list addition
a = [1,2,3]
b = [4,5,6]
c = a + b
print(c)