From ecc5e71e2d26fbf2f0bf2298ff8ee40366bd4ac7 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 18 Jul 2025 15:26:59 +0200 Subject: Added simpler python example --- python/examples/move.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 python/examples/move.py diff --git a/python/examples/move.py b/python/examples/move.py new file mode 100644 index 0000000..3cdd606 --- /dev/null +++ b/python/examples/move.py @@ -0,0 +1,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) -- cgit v1.3