8 lines
198 B
Python
8 lines
198 B
Python
index = 1
|
|
while(True):
|
|
for pos in ['A', 'B', 'C', 'D', 'E', 'F']:
|
|
hexiposi.move(pos)
|
|
visual_check_hexiposi(pos)
|
|
print "Ok: " + pos
|
|
print index
|
|
index = index + 1 |