Files
touch-programming/file
T

2 lines
99 B
Plaintext

"(defun factorial (n)\n (if (< n 1)\n 1\n (* n (factorial (- n 1)))))\n\n(factorial 5)"