diff --git a/cube-scrambler.el b/cube-scrambler.el index b7bbd9c..a521776 100644 --- a/cube-scrambler.el +++ b/cube-scrambler.el @@ -1,3 +1,14 @@ +;;; cube-scrambler.el --- Rubik's cube scrambler + +;; Copyright (C) Jonathan Lamothe + +;; Author: Jonathan Lamothe +;; Package-Version: 0.0 + +;; This file is not part of GNU Emacs. + +;;; Code: + (defvar cube-faces "UDLRFB") (defun cube-scramble (moves) @@ -39,3 +50,5 @@ FACE is a character representing the face to be turned." (defun cube-filter (str char) "Filters all instances of a character from a string" (seq-filter (lambda (c) (not (equal c char))) str)) + +;;; cube-scrambler.el ends here