The first programming language for an interactive shell?

Out of sheer curiosity and desire for nothing, I could not find an answer to Google quickly.

Dear fellow programmers, what is the first programming language that provides an interactive shell?

+4
source share
1 answer

I cannot prove that other systems were there before, but the LISP REPL construct is one common name assigned to this style of interpreter.

The LISP Programmer's Guide Since 1960 (PDF) contains a reference on page 2 regarding:

Base system extensions are available for various purposes. The compiler version of the LISP system can be used to compile S-expressions into machine code. Compiled function values ​​are computed approximately 60 times faster than function S-expressions can be interpreted and evaluated. The LISP compiler system uses approximately half of the 32,000 memory.

+3
source

Source: https://habr.com/ru/post/1397923/


All Articles