Page 1 of 1

concatenate

Posted: Wed Jul 18, 2012 3:02 am
by jellyfish
(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

Posted: Wed Jul 18, 2012 10:05 am
by nuntius
Something like this?

Code: Select all

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

Code: Select all

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