micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
# tests list.clear
|
||||
x = [1, 2, 3, 4]
|
||||
x.clear()
|
||||
print(x)
|
Reference in New Issue
Block a user
@@ -0,0 +1,4 @@
|
||||
# tests list.clear
|
||||
x = [1, 2, 3, 4]
|
||||
x.clear()
|
||||
print(x)
|