Skip tab spacing and show incorrect spaces and return characters

This commit is contained in:
2025-02-14 19:44:32 +01:00
parent c17f0f484a
commit 157f66dfa9
3 changed files with 30 additions and 10 deletions
+1
View File
@@ -0,0 +1 @@
"(defun factorial (n)\n (if (< n 1)\n 1\n (* n (factorial (- n 1)))))\n\n(factorial 5)"