mazes2/test.py

7 lines
92 B
Python

from maze import OriginShift
m = OriginShift(21)
print(m[1,1])
print(m[2,1])
print(m[1,2])