aboutsummaryrefslogtreecommitdiff
path: root/python/examples/move.py
blob: 3cdd606726d93c53f244587fdc8706ca7f63ab3a (plain)
1
2
3
4
5
6
7
8
9
10
# Small example of nissy_python_module usage
# See the solve.py example for more details on how this works

from sys import path
path.append("./")
import nissy_python_module as nissy

cube = nissy.applymoves(nissy.solved_cube, "R' U' F");
print("Cube after the moves R' U' F:")
print(cube)

Generated with cgit - Back to sebastiano.tronto.net