2017-01-06 17:13:40 -05:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:03:01 -04:00
|
|
|
raise SystemExit
|
2015-03-25 19:33:48 -04:00
|
|
|
|
|
|
|
# construct from something with unknown length (requires generators)
|
|
|
|
print(array('i', (i for i in range(10))))
|