Starting at Lisp

Asked

Viewed 106 times

0

How to start in Lisp? Common Lisp to be more exact, it’s a totally different language than I’m used to (I only have 3 years of programming study), the installation examples I’ve seen are usually on consoles, I can’t 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 Clisp, but I don’t know how to download, configure and I don’t even know what it is.

  • Reading the tag information will help. Like a teaspoon: https://answall.com/tags/lisp/info

  • @Jeffersonquesado I need something more technical, the general language I could find, I need something like an IDE, installation, these things.

1 answer

1


As in any language, all you need to start with is an editor and a compiler/integer (could be the clisp).

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

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

In the terminal:

$ clisp meu_programa.lisp

"Olá mundo"

You install it by the package manager of your S.O. or by downloading on https://clisp.sourceforge.io

Browser other questions tagged

You are not signed in. Login or sign up in order to post.