Spaces from the left margin for the specified level of indentation.
We indent by increments of 4 spaces.
Function:
(defun atj-indent (level) (declare (xargs :guard (natp level))) (let ((__function__ 'atj-indent)) (declare (ignorable __function__)) (implode (repeat (* 4 level) #\Space))))
Theorem:
(defthm stringp-of-atj-indent (b* ((spaces (atj-indent level))) (stringp spaces)) :rule-classes :rewrite)