This is a read-only archive of lispforum.com. The forum was locked to new users and posts and is preserved here as static HTML from a database snapshot taken on 2019-09-07.

Print white spaces

2 posts · 1525 views

Hi!

I have another question, how can i print white spaces??

I need to print this
O   *   O
*X  O*  ****
**X  **O  O**
*****XX*****
Thank you.

Last edited by nuntius on , edited 1 time in total. Reason: add code tag

Re: Print white spaces

string literal: (print " ")

character literal: (format t "~A" #\Space)