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.

Greetings from Indecipherable

4 posts · 4451 views

Hi there, Comrades!

Nice to "meet" you all! I go by my internet alias: "Indecipherable", and I have to say, lisp can be addicting!
My first programming language was Python, and so I played with it for a while. I did not abandon it, but I am more focused on lisp right now, and CL seems to be very jolly! lol!
I also have some interest in web developing, I know a few drops of HTML (quite large drops though), and have javascript manuals lying around. I am also interested in AIML for making chatbots.
So thank you, and I am 14 by the way...

So, let's have a toast with lisp code... lol!
(defun convert (list)
	(defparameter *new-l* (list))

	(dolist (x list)
		(push (character x) *new-l*))
		(defparameter *new-l* (reverse *new-l*))
	(string-capitalize 
		(concatenate 'string *new-l*)))
Don't take the FUN out of DEFUN !

Re: Greetings from Indecipherable

Nice to "meet" you too! Hope to see you around the forum. I just recently joined too, and at the moment it seems to be a bit inactive. Maybe it will spice up a bit when high school gets out for the summer. For those in high school anyway.

Re: Greetings from Indecipherable

Well, the Lisp community is kind of old and fragmented, so most activity occurs on various mailing lists, newsgroups and IRC. But the memberlist says that there are plenty of people regularly checking this forum, so it is not as if it was dead.

Re: Greetings from Indecipherable

Ramarren wrote:Well, the Lisp community is kind of old and fragmented, so most activity occurs on various mailing lists, newsgroups and IRC. But the memberlist says that there are plenty of people regularly checking this forum, so it is not as if it was dead.
I've noticed :D
Don't take the FUN out of DEFUN !