micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
try:
|
||||
str.center
|
||||
except:
|
||||
print("SKIP")
|
||||
raise SystemExit
|
||||
|
||||
print("foo".center(0))
|
||||
print("foo".center(1))
|
||||
print("foo".center(3))
|
||||
print("foo".center(4))
|
||||
print("foo".center(5))
|
||||
print("foo".center(6))
|
||||
print("foo".center(20))
|
Reference in New Issue
Block a user