DEV Community

Max Angelo Dapitilla Perin
Max Angelo Dapitilla Perin

Posted on

 

Answer: How to print a new line in lisp?

Use the TERPRI function (the name stands for "terminate printing", as it's intended to be used to terminate a line of output).

(terpri)

You could also use FRESH-LINE. This prints a newline unless you're already at the start of a line.

Latest comments (0)

Timeless DEV post...

Git Concepts I Wish I Knew Years Ago

The most used technology by developers is not Javascript.

It's not Python or HTML.

It hardly even gets mentioned in interviews or listed as a pre-requisite for jobs.

I'm talking about Git and version control of course.

One does not simply learn git