In chapter 9 of The Little Schemer:
(define align
(lambda (pora)
(cond ((atom? pora) pora)
((a-pair? (first pora)) (align (shift pora)))
(else (build (first pora)
(align (second pora)))))))
Most of the functions in the book have examples, and the examples are usually explained in detail, but not this function.
I don't understand how to use this function, and so I can't understand the functions that follow. I can't find examples of this function on the web.
Could you show me some examples?