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

import os, sys

sys.path.append(os.getcwd())
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