Source code file written in Lisp, a programming language that has several different dialects including Common Lisp and Scheme; contains plain text program code that is run with a Lisp interpreter; may be an entire program or a part of a larger Lisp application. ...
英语翻译 原句:An interpreter is a program that reads a high-level program and does what it says.In effect,it translates the program line-by-line,alternately reading lines and carrying out commands 最好整句翻译一下相关知识点: 试题来源: ...
What is an LSP file? Source code file written in Lisp, a programming language that includes variations such as Common Lisp and Scheme; stores plain text program code that can be executed with a Lisp interpreter; may be a application component or an entire program. ...
Break-Even Point A programming language is said to reach a “break-even point” when it can be implemented in itself. For example, a Lisp interpreter that is written in Lisp as well. One major goal for a new programming language is to reach the break-even point, as it is easier to s...
Tim Hart and Mike Levin at MIT created the first LISP compiler, in LISP, in 1962; the compiler itself was compiled by running Russell’s LISP interpreter on the compiler source code. Compiled LISP ran 40 times faster than interpreted LISP on the IBM 704. That was the earliest bootstrappe...
Both interpreters and compilers are available for most high-level languages. However,BASICandLISPare especially designed to be executed by an interpreter. In addition,page description languages, such asPostScript, use an interpreter. Every PostScriptprinter, for example, has a built-in interpreter th...
JavaScript is generally considered an interpreted language, where the client (usually a web browser) is the interpreter. However, in most modern browsers, some form of JIT (Just-In-Time) is used to compile JavaScript code before it runs. Lisp, often considered an interpreted language, can mix...
Prior to the letter, Stallman created the very first copyleft when working on a Lisp interpreter. During that time, the Symbolics company asked permission to use it and eventually fine-tuned it after Stallman had provided them with a public domain of his work. Eventually, Stallman asked ...
ofbinarybits -- 1's and 0's -- in a format that a computer's processors can read and execute. For example, the VM-based interpreter on an Apple Mac computer would generate machine code that is specific to the macOS and the computer's processor architecture, whether Intel or Apple M1...
An interpreter is a program that translates and executes a single line of code at a time. This process repeats until the interpreter arrives at the final line of code in the given program or script. As you can see from the diagram above, an interpreter takes two inputs. First, it takes...