Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

Perhaps I've misunderstood, but several languages have REPLs so that isn't unique to Lisps, is it?


sort by: page size:

Most Lisp REPLS print a result somewhere.

No it's a Clojure thing. Other lisps may vary.

In primitives, yes; but that's not the point with Lisp, whereas it is for those alternatives.

I was implying that a feature that is known to be in Lisp but not in most of the other languages. Such as Read–eval–print loop.

Isn't this a feature of Lisp-alikes in general?

Its core lives in Lisp dialects like Emacs Lisp just fine.

Try GNU Emacs and the REPL:

    M-x ielm

    *** Welcome to IELM ***  Type (describe-mode) for help.
    ELISP> (append '(this is a Lisp) '(REPL))
    (this is a Lisp REPL)

    ELISP> (cons 'This (append '(is a) (list 'Lisp 'REPL)))
    (This is a Lisp REPL)
This code is from McCarthy's Lisp 1.5 Programmer's manual, from 1962, running in Common Lisp:

    CL-USER 6 >  (defun my-length (l)
                   (prog (u v)
                     (setq v 0)
                     (setq u l)
                     a
                     (cond ((null u) (return v)))
                     (setq u (cdr u))
                     (setq v (+ v 1))
                     (go a)))
    MY-LENGTH

    CL-USER 7 > (my-length '(1 2 3 4 5))
    5
That's why it's called a 'Lisp' -> it runs Lisp code.

Sure, and in CL is even better. My point was that other languages (non-lisps, such as Python, Ruby, etc) don't allow for that.

Save for Erlang and Elixir, this tends to be the case with ML-family FP languages, not so much with LISPs, in my opinion of course.

It's only an anti-pattern in languages that don't have resumable conditions (i.e. other than Common Lisp).

i think there are some common lisp implementations that do this

Ah okay that’s cool then. I thought you were calling out some low level implementation detail of lisp I had overlooked. I’m trying to build a lisp as the intermediate of my new toy programming language. So I wanna get that right.

Unfortunately, no direct comparison to Lisps.

The two downsides mentioned regarding FP are not an issue if you are using a REPL and a Lisp:

- excellent IDE support, since you are working inside your program (which can be inspected)

- paradigm a la carte: you want named arguments? Go for it (split :string "foo,bar" :by ",")

  you want different invocation syntax? (3 + 4) or (3 4 +) is just a macro away
and a bit easier to read than: (this Int).square | Int = this.*(this) YMMV

  you want to define your data shape? use your favorite schema language

  you want monads? just use a library

  you want go-routines? just use a library

  you want compile time types? just use a library

None and none, as what you need is to alias the symbols for most lisps.

It is a special case in other languages, in lisp it is one of a very few highly consistent rules

Cool. That's one of the biggest pains I've found with implementing a lisp in a typed language.

Yes, you are correct. It's just that I considered "Lisp"="Common Lisp" in this case.

I could be wrong, but can't Common Lisp do this?

Yes, that's an interesting feature of Lisp.

You can do that in Haskell, too, but it's much, much less common.


So I guess you just have to be super careful with variable and function names? That's the dark-ages for lisp, but still usable.
next

Legal | privacy