You have problems, and we're glad to hear them. Explain the problem, what you have tried, and where you got stuck.
Feel free to share a little info on yourself and the course.
Forum rules
Please respect your teacher's guidelines. Homework is a learning tool. If we just post answers, we aren't actually helping. When you post questions, be sure to show what you have tried or what you don't understand.
-
jellyfish
- Posts: 1
- Joined: Wed Jul 18, 2012 2:55 am
Post
by jellyfish » Wed Jul 18, 2012 3:02 am
(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?

-
nuntius
- Posts: 538
- Joined: Sat Aug 09, 2008 10:44 am
- Location: Newton, MA
Post
by nuntius » Wed Jul 18, 2012 10:05 am
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)))
|#