# test MicroPython-specific features of array.arraytry:importuarrayasarrayexceptImportError:try:importarrayexceptImportError:print("SKIP")raiseSystemExit# arrays of objectsa=array.array('O')a.append(1)print(a[0])# arrays of pointersa=array.array('P')a.append(1)print(a[0])