#Print Diamond kata
Given a letter, print a diamond starting with ‘A’ with the supplied letter at the widest point.
For example:
(print-diamond "A") will print
A
(print-diamond "B") will print
A B B A
(print-diamond "C") will print
A B B C C B B A
and so on.
Source: Seb Rose's blog