Google News
logo
Lisp - Interview Questions
How to write 'Hello World' Program in Lisp?
Learning a new programming language doesn't really take off until you learn how to greet the entire world in that language, right!

So, please create new source code file named main.lisp and type the following code in it.

Example :
(write-line "Hello World")

(write-line "I am Learning 'LISP' Interview Question")​

When you click the Execute button, or type Ctrl+E, LISP executes it immediately and the result returned is :
Hello World

I am Learning 'LISP' Interview Question​
Advertisement