mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-23 14:05:34 -04:00
10 lines
213 B
Python
10 lines
213 B
Python
try:
|
|
from array import array
|
|
except ImportError:
|
|
import sys
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
# construct from something with unknown length (requires generators)
|
|
print(array('i', (i for i in range(10))))
|