added headers

This commit is contained in:
2025-04-25 14:59:02 -04:00
parent 64c74c2e67
commit 132782daf4

View File

@@ -1,3 +1,14 @@
;;; cube-scrambler.el --- Rubik's cube scrambler
;; Copyright (C) Jonathan Lamothe
;; Author: Jonathan Lamothe <jonathan@jlamothe.net>
;; 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