formatting

This commit is contained in:
Alan Daniels 2025-12-02 18:31:49 +11:00
parent af70982d4b
commit 596e98d951
2 changed files with 28 additions and 18 deletions

10
.editorconfig Normal file
View file

@ -0,0 +1,10 @@
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

View file

@ -1,7 +1,7 @@
(require :uiop)
(defun split-instruction (s)
"Splits a string S into two parts at the given INDEX."
"Splits the given instruction into a pair"
(cons (subseq s 0 1)
(subseq s 1)))