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.

concatenate

2 posts · 3761 views

(concatenate 'string
(string (char-1+ (char string 0)))

may i know how to comment this two line of my code in a correct way?
anyone can help me? :)

Re: concatenate

Something like this?
;; What am I doing?
(concatenate 'string
  (string (char-1+ (char string 0)))
Or do you mean to comment out the code like this?
#|
 (concatenate 'string
  (string (char-1+ (char string 0)))
|#