Jump to content

Read–eval–print loop

From Wikipedia, the free encyclopedia

Aread–eval–print loop(REPL), also termed aninteractive toplevelorlanguage shell,is a simple interactivecomputer programmingenvironment that takes single user inputs, executes them, and returns the result to the user; a program written in a REPL environment is executed piecewise.[1]The term usually refers to programming interfaces similar to the classicLisp machineinteractive environment. Common examples includecommand-lineshellsand similar environments forprogramming languages,and the technique is very characteristic ofscripting languages.[2]

History[edit]

In 1964, the expressionREAD-EVAL-PRINT cycleis used byL. Peter DeutschandEdmund Berkeleyfor an implementation ofLispon thePDP-1.[3]

Since at least the 1980s, the abbreviationsREP LoopandREPLare attested in the context ofScheme.[4][5]

Overview[edit]

In a REPL, the user enters one or more expressions (rather than an entirecompilation unit) and the REPL evaluates them and displays the results.[1]The nameread–eval–print loopcomes from the names of the Lisp primitive functions which implement this functionality:

  • Thereadfunction accepts an expression from the user, andparsesit into a data structure in memory. For instance, the user may enter thes-expression(+ 1 2 3),which is parsed into alinked listcontaining four data elements.
  • Theevalfunction takes this internal data structure and evaluates it. In Lisp, evaluating an s-expression beginning with the name of a function means calling that function on the arguments that make up the rest of the expression. So the function+is called on the arguments1 2 3,yielding the result6.
  • Theprintfunction takes the result yielded byeval,and prints it out to the user. If it is a complex expression, it may bepretty-printedto make it easier to understand.

The development environment then returns to the read state, creating a loop, which terminates when the program is closed.

REPLs facilitateexploratory programminganddebuggingbecause the programmer can inspect the printed result before deciding what expression to provide for the next read. The read–eval–print loop involves the programmer more frequently than the classic edit–compile–run–debug cycle.

Because theprintfunction outputs in the same textual format that thereadfunction uses for input, most results are printed in a form that could be copied and pasted back into the REPL. However, it is sometimes necessary to print representations of elements that cannot sensibly be read back in, such as a socket handle or a complex class instance. In these cases, there must exist a syntax for unreadable objects. In Python, it is the<__module__.class instance>notation, and in Common Lisp, the#<whatever>form. The REPL ofCLIM,SLIME,and theSymbolicsLisp Machinecan also read back unreadable objects. They record for each output which object was printed. Later when the code is read back, the object will be retrieved from the printed output.

REPLs can be created to support any text-based language. REPL support for compiled languages is usually achieved by implementing aninterpreteron top of a virtual machine which provides an interface to the compiler. For example, starting with JDK 9,JavaincludedJShellas a command-line interface to the language. Various other languages have third-party tools available for download that provide similar shell interaction with the language.

Uses[edit]

As ashell,a REPL environment allows users to access relevant features of an operating system in addition to providing access to programming capabilities. The most common use for REPLs outside of operating system shells is for interactiveprototyping.[6]Other uses include mathematical calculation, creating documents that integrate scientific analysis (e.g.IPython), interactive software maintenance,benchmarking,and algorithm exploration.

Lisp specifics[edit]

Implementation[edit]

A minimal definition is:

(define(REPLenv)
(print(evalenv(read)))
(REPLenv))

whereenvrepresents initialeval-uation environment. It is also assumed thatenvcan be destructively updated byeval.

Functionality[edit]

Typical functionality provided by a Lisp REPL includes:

  • History of inputs and outputs.
  • Variables are set for the input expressions and results. These variables are also available in the REPL. For example in Common Lisp*refers to the last result,**and***to the results before that.
  • Levels of REPLs. In many Lisp systems if an error occurs during the reading, evaluation or printing of an expression, the system is not thrown back to the top level with an error message. Instead a new REPL, one level deeper, is started in the error context. The user can then inspect the problem, fix it and continue – if possible. If an error occurs in such a debug REPL, another REPL, again a level deeper, is started. Often the REPL offers special debug commands.
  • Error handling.The REPL provides restarts. These restarts can be used, when an error occurs, to go back to a certain REPL level.
  • Mousesensitive input and output of data objects.
  • Input editing and context specific completion over symbols, pathnames, class names and other objects.
  • Help and documentation for commands.
  • Variablesto control the reader. For example, the variable *read-base* controls in which base numbers are read by default.
  • Variables to control the printer. Example: maximum length or maximum depth of expressions to print.
  • Additional command syntax. Some REPLs have commands that follow not the s-expression syntax, but often work with Lisp data as arguments.
  • Graphical REPLs. Some Lisp REPLs (the CLIM Listener is an example) accept also graphical input and output.

See also[edit]

References[edit]

  1. ^abGrillmeyer, O. (2013).Exploring Computer Science with Scheme.Undergraduate Texts in Computer Science. Springer New York. p. 239.ISBN978-1-4757-2937-5.Retrieved2021-06-26.The central component to the Scheme interpreter is theread-eval-print loop.Commands are read in, then evaluated. Finally, the evaluated result is printed.
  2. ^Hey, Tony; Pápay, Gyuri (2014).The Computing Universe: A Journey through a Revolution.Cambridge University Press. p.76.ISBN978-1-316-12322-5,"A major characteristic of modern scripting languages is their interactivity, sometimes referred to as aREPLprogramming environment.... The characteristics of ease of use and immediate execution with a REPL environment are sometimes taken as the definition of a scripting language. "{{cite book}}:CS1 maint: postscript (link)
  3. ^L. Peter Deutsch; Edmund Berkeley,The LISP Implementation for the PDP-1 Computer(PDF),p.15
  4. ^Smith, Jerry D. (1988).An introduction to Scheme.Englewood Cliffs, N.J.: Prentice Hall. p.8.ISBN978-0-13-496712-7.
  5. ^Hanson, Chris (1986)."rep.scm -- Initial 1986 revision of MIT-Scheme".GitHub.Retrieved11 June2023.
  6. ^van Binsbergen, L. Thomas; Verano Merino, Mauricio; Jeanjean, Pierre; van der Storm, Tijs; Combemale, Benoit; Barais, Olivier (2020-11-17). "A principled approach to REPL interpreters".Proceedings of the 2020 ACM SIGPLAN International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software.New York, NY, USA: ACM. pp. 84–100.doi:10.1145/3426428.3426917.ISBN978-1-4503-8178-9.

External links[edit]