}
else if (token[0].equals("delete")||token[0].equals("d")) {
if (token.length<2 || (token.length>2 && !token[2].startsWith("//")) )
throw new IllegalArgumentException();
int pos=Integer.parseInt(token[1]);
lista.Delete(pos);
wy.format("usunięcie: lista[%s]\n",pos);
}
else if (token[0].equals("read")||token[0].equals("r")) {
if (token.length<2 || (token.length>2 && !token[2].startsWith("//")) )
throw new IllegalArgumentException();