Starting in Lisp [closed]

0

How to get started in Lisp? Common Lisp to be more exact, it's a totally different language from what I'm used to (I only have 3 years of programming study), the installation examples I've seen are usually in consoles, I can not understand anything they're doing. I would like help to prepare the machine to develop in Lisp, the closest I found to an IDE was the CLisp, but I do not know how to download, configure and I'm not sure what it is.

    
asked by anonymous 23.10.2017 / 20:53

1 answer

1

As in any language, all you need to begin with is an editor and a compiler / interpreter (this can be the case).

For example, create a file and save it with the name meu_programa.lisp , with the content:

; programa em lisp olá mundo
(print "Olá mundo")

In terminal:

$ clisp meu_programa.lisp

"Olá mundo"

You install it by the package manager of your S.O. or by downloading it at link

    
23.10.2017 / 21:56