From 132782daf4ce5102b8adde56dafafea6c8e1bee7 Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Fri, 25 Apr 2025 14:59:02 -0400 Subject: [PATCH] added headers --- cube-scrambler.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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