12 lines
278 B
Python
12 lines
278 B
Python
try:
|
|
from uarray import array
|
|
except ImportError:
|
|
try:
|
|
from array import array
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
# construct from something with unknown length (requires generators)
|
|
print(array('i', (i for i in range(10))))
|