micropython: add micropython component
This commit is contained in:
5
components/language/micropython/tests/basics/list_sum.py
Normal file
5
components/language/micropython/tests/basics/list_sum.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# list addition
|
||||
a = [1,2,3]
|
||||
b = [4,5,6]
|
||||
c = a + b
|
||||
print(c)
|
Reference in New Issue
Block a user