词条 | Forth (programming language) |
释义 |
| name = Forth | paradigm = Procedural, stack-oriented, reflective, concatenative | year = {{start date and age|1970}} | designer = Charles H. Moore | typing = typeless | implementations = SwiftForth (Forth, Inc.) Gforth (Free software) VFX Forth (MicroProcessor Engineering) | influenced_by = Burroughs large systems, Lisp, APL | influenced = Factor, RPL, REBOL }} Forth is an imperative stack-based computer programming language and environment originally designed by Charles "Chuck" Moore. Language features include structured programming, reflection (the ability to modify the program structure during program execution), concatenative programming (functions are composed with juxtaposition) and extensibility (the programmer can create new commands). Although not an acronym, the language's name is sometimes spelled with all capital letters as FORTH, following the customary usage during its earlier years. A procedural programming language without type checking, Forth features both interactive execution of commands (making it suitable as a shell for systems that lack a more formal operating system) and the ability to compile sequences of commands for later execution. For much of Forth's existence, the standard technique was to compile to threaded code, but there are modern implementations that generate optimized machine code like other language compilers. Forth is used in the Open Firmware boot loader, in space applications[1] such as the Philae spacecraft[2][3], and other embedded systems which involve interaction with hardware. The bestselling 1986 computer game Starflight, from Electronic Arts, was written with a custom Forth.[4] The free software Gforth implementation is actively maintained, as are several commercially supported systems. OverviewForth is a simple yet extensible language; its modularity and extensibility permit writing significant programs. A Forth environment combines the compiler with an interactive shell, where the user defines and runs subroutines called words. Words can be tested, redefined, and debugged as the source is entered without recompiling or restarting the whole program. All syntactic elements, including variables and basic operators, are defined as words. Forth environments vary in how the resulting program is stored, but ideally running the program has the same effect as manually re-entering the source. StacksMost programming environments with recursive subroutines use a stack for control flow. This structure typically also stores local variables, including subroutine parameters (in call by value system such as C). Forth often does not have local variables, however, nor is it call-by-value. Instead, intermediate values are kept in another stack, different from the one it uses for return addresses, loop counters, etc. Words operate directly on the topmost values in the first of these two stacks. It may therefore be called the "parameter" or "data" stack, but most often simply "the" stack. The second, function-call stack is then called the "linkage" or "return" stack, abbreviated rstack. Special rstack manipulation functions provided by the kernel allow it to be used for temporary storage within a word, and it is often used by counted loops, but otherwise it cannot be used to pass parameters or manipulate data. Most words are specified in terms of their effect on the stack. Typically, parameters are placed on the top of the stack before the word executes. After execution, the parameters have been erased and replaced with any return values. For arithmetic operators, this follows the rule of reverse Polish notation. See below for examples illustrating stack usage. UsesForth has been used successfully in large, complex projects, while applications developed by competent, disciplined professionals have proven to be easily maintained on evolving hardware platforms over decades of use.[5] Forth has a niche both in astronomical and space applications.[6] Forth is still used today in many embedded systems (small computerized devices) because of its portability, efficient memory use, short development time, and fast execution speed. It has been implemented efficiently on modern RISC processors, and processors that use Forth as machine language have been produced.[7] Other uses of Forth include the Open Firmware boot ROMs used by Apple, IBM, Sun, and OLPC XO-1; and the FICL-based pre-kernel bootstrap of the FreeBSD operating system.[8] HistoryForth evolved from Charles H. Moore's personal programming system, which had been in continuous development since 1968.[9] Forth was first exposed to other programmers in the early 1970s, starting with Elizabeth Rather at the US National Radio Astronomy Observatory.[9] After their work at NRAO, Charles Moore and Elizabeth Rather formed FORTH, Inc. in 1973, refining and porting Forth systems to dozens of other platforms in the next decade. Forth is so named because in 1968 "the file holding the interpreter was labeled FOURTH, for 4th (next) generation software—but the IBM 1130 operating system restricted file names to 5 characters."[10] Moore saw Forth as a successor to compile-link-go third-generation programming languages, or software for "fourth generation" hardware, not a fourth-generation programming language as the term has come to be used. Because Charles Moore frequently moved from job to job over his career, an early pressure on the developing language was ease of porting to different computer architectures. A Forth system has often been used to bring up new hardware. For example, Forth was the first resident software on the new Intel 8086 chip in 1978 and MacFORTH was the first resident development system for the 128K Macintosh in 1984.[9] FORTH, Inc.'s microFORTH was developed for the Intel 8080, Motorola 6800, and Zilog Z80 microprocessors starting in 1976. MicroFORTH was later used by hobbyists to generate Forth systems for other architectures, such as the 6502 in 1978. Wide dissemination finally led to standardization of the language. Common practice was codified in the de facto standards FORTH-79[11] and FORTH-83[12] in the years 1979 and 1983, respectively. These standards were unified by ANSI in 1994, commonly referred to as ANS Forth.[13][14] Forth became popular in the 1980s[15] because it was well suited to the small microcomputers of that time, being compact and portable. At least one home computer, the British Jupiter ACE, had Forth in its ROM-resident operating system. The Canon Cat also used Forth for its system programming, and Rockwell produced single-chip microcomputers with resident Forth kernels, the R65F11 and R65F12. A complete family tree is at TU-Wien. Insoft GraFORTH was a version of Forth with graphics extensions for the Apple II.[16] ASYST was a Forth expansion for measuring and controlling on PCs.[17] As of 2018 the source for the original 1130 version of FORTH has been recovered, and is now being updated to run on a restored or emulated 1130 system.[18] Programmer's perspective{{further|Reverse Polish notation}}Forth relies heavily on explicit use of a data stack and reverse Polish notation (RPN or postfix notation), commonly used in calculators from Hewlett-Packard. In RPN, the operator is placed after its operands, as opposed to the more common infix notation where the operator is placed between its operands. Postfix notation makes the language easier to parse and extend; Forth's flexibility makes a static BNF grammar inappropriate, and it does not have a monolithic compiler. Extending the compiler only requires writing a new word, instead of modifying a grammar and changing the underlying implementation. Using RPN, one could get the result of the mathematical expression This command line first puts the numbers 25 and 10 on the implied stack.{{clear}}
Then the number 50 is placed on the stack.{{clear}}
Even Forth's structural features are stack-based. For example: This code defines a new word (again, word is the term used for a subroutine) called This function is written more succinctly as: You could run this word as follows: First the interpreter pushes a number (1 or 8) onto the stack, then it calls FacilitiesForth has no explicit grammar. The interpreter reads a line of input from the user input device, which is then parsed for a word using spaces as a delimiter; some systems recognise additional whitespace characters. When the interpreter finds a word, it looks the word up in the dictionary. If the word is found, the interpreter executes the code associated with the word, and then returns to parse the rest of the input stream. If the word isn't found, the word is assumed to be a number and an attempt is made to convert it into a number and push it on the stack; if successful, the interpreter continues parsing the input stream. Otherwise, if both the lookup and the number conversion fail, the interpreter prints the word followed by an error message indicating the word is not recognised, flushes the input stream, and waits for new user input.[20] The definition of a new word is started with the word will compile the word Most Forth systems include an assembler that allows one to specify words using the processor's facilities at its lowest level. Mostly the assembler is tucked away in a separate namespace (wordlist) as relatively few users want to use it. Forth assemblers may use a reverse-polish syntax in which the parameters of an instruction precede the instruction, but designs vary widely and are specific to the Forth implementation. A typical reverse-polish assembler prepares the operands on the stack and have the mnemonic copy the whole instruction into memory as the last step. A Forth assembler is by nature a macro assembler, so that it is easy to define an alias for registers according to their role in the Forth system: e.g. "datastackpointer" for the register used as a stack pointer.[22] Operating system, files, and multitaskingMost Forth systems run under a host operating system such as Microsoft Windows, Linux or a version of Unix and use the host operating system's file system for source and data files; the ANSI Forth Standard describes the words used for I/O. All modern Forth systems use normal text files for source, even if they are embedded. An embedded system with a resident compiler gets its source via a serial line. Classic Forth systems traditionally use neither operating system nor file system. Instead of storing code in files, source code is stored in disk blocks written to physical disk addresses. The word PAUSE is used to save the current task's execution context, to locate the next task, and restore its execution context. Each task has its own stacks, private copies of some control variables and a scratch area. Swapping tasks is simple and efficient; as a result, Forth multitaskers are available even on very simple microcontrollers, such as the Intel 8051, Atmel AVR, and TI MSP430.[23]Other non-standard facilities include a mechanism for issuing calls to the host OS or windowing systems, and many provide extensions that employ the scheduling provided by the operating system. Typically they have a larger and different set of words from the stand-alone Forth's Self-compilation and cross compilationA full-featured Forth system with all source code will compile itself, a technique commonly called meta-compilation or self-hosting, by Forth programmers (although the term doesn't exactly match meta-compilation as it is normally defined). The usual method is to redefine the handful of words that place compiled bits into memory. The compiler's words use specially named versions of fetch and store that can be redirected to a buffer area in memory. The buffer area simulates or accesses a memory area beginning at a different address than the code buffer. Such compilers define words to access both the target computer's memory, and the host (compiling) computer's memory.[24] After the fetch and store operations are redefined for the code space, the compiler, assembler, etc. are recompiled using the new definitions of fetch and store. This effectively reuses all the code of the compiler and interpreter. Then, the Forth system's code is compiled, but this version is stored in the buffer. The buffer in memory is written to disk, and ways are provided to load it temporarily into memory for testing. When the new version appears to work, it is written over the previous version. Numerous variations of such compilers exist for different environments. For embedded systems, the code may instead be written to another computer, a technique known as cross compilation, over a serial port or even a single TTL bit, while keeping the word names and other non-executing parts of the dictionary in the original compiling computer. The minimum definitions for such a Forth compiler are the words that fetch and store a byte, and the word that commands a Forth word to be executed. Often the most time-consuming part of writing a remote port is constructing the initial program to implement fetch, store and execute, but many modern microprocessors have integrated debugging features (such as the Motorola CPU32) that eliminate this task.[25] Structure of the languageThe basic data structure of Forth is the "dictionary" which maps "words" to executable code or named data structures. The dictionary is laid out in memory as a tree of linked lists with the links proceeding from the latest (most recently) defined word to the oldest, until a sentinel value, usually a NULL pointer, is found. A context switch causes a list search to start at a different leaf. A linked list search continues as the branch merges into the main trunk leading eventually back to the sentinel, the root. There can be several dictionaries. In rare cases such as meta-compilation a dictionary might be isolated and stand-alone. The effect resembles that of nesting namespaces and can overload keywords depending on the context. A defined word generally consists of head and body with the head consisting of the name field (NF) and the link field (LF) and body consisting of the code field (CF) and the parameter field (PF). Head and body of a dictionary entry are treated separately because they may not be contiguous. For example, when a Forth program is recompiled for a new platform, the head may remain on the compiling computer, while the body goes to the new platform. In some environments (such as embedded systems) the heads occupy memory unnecessarily. However, some cross-compilers may put heads in the target if the target itself is expected to support an interactive Forth.[26] Dictionary entryThe exact format of a dictionary entry is not prescribed, and implementations vary. However, certain components are almost always present, though the exact size and order may vary. Described as a structure, a dictionary entry might look this way:[27] The name field starts with a prefix giving the length of the word's name (typically up to 32 bytes), and several bits for flags. The character representation of the word's name then follows the prefix. Depending on the particular implementation of Forth, there may be one or more NUL ('\\0') bytes for alignment. The link field contains a pointer to the previously defined word. The pointer may be a relative displacement or an absolute address that points to the next oldest sibling. The code field pointer will be either the address of the word which will execute the code or data in the parameter field or the beginning of machine code that the processor will execute directly. For colon defined words, the code field pointer points to the word that will save the current Forth instruction pointer (IP) on the return stack, and load the IP with the new address from which to continue execution of words. This is the same as what a processor's call/return instructions do. Structure of the compilerThe compiler itself is not a monolithic program. It consists of Forth words visible to the system, and usable by a programmer. This allows a programmer to change the compiler's words for special purposes. The "compile time" flag in the name field is set for words with "compile time" behavior. Most simple words execute the same code whether they are typed on a command line, or embedded in code. When compiling these, the compiler simply places code or a threaded pointer to the word.[21] The classic examples of compile-time words are the control structures such as would be compiled to the following sequence inside a definition: The numbers after Compilation state and interpretation stateThe word The word The interpreter state can be changed manually with the words In ANS Forth, the current state of the interpreter can be read from the flag Immediate wordsThe word Unnamed words and execution tokensIn ANS Forth, unnamed words can be defined with the word Execution tokens can be stored in variables. The word The word Parsing words and commentsThe words Structure of codeIn most Forth systems, the body of a code definition consists of either machine language, or some form of threaded code. The original Forth which follows the informal FIG standard (Forth Interest Group), is a TIL (Threaded Interpretive Language). This is also called indirect-threaded code, but direct-threaded and subroutine threaded Forths have also become popular in modern times. The fastest modern Forths use subroutine threading, insert simple words as macros, and perform peephole optimization or other optimizing strategies to make the code smaller and faster.[30] Data objectsWhen a word is a variable or other data object, the CF points to the runtime code associated with the defining word that created it. A defining word has a characteristic "defining behavior" (creating a dictionary entry plus possibly allocating and initializing data space) and also specifies the behavior of an instance of the class of words constructed by this defining word. Examples include:
Names an uninitialized, one-cell memory location. Instance behavior of a
Names a value (specified as an argument to
Names a location; space may be allocated at this location, or it can be set to contain a string or other initialized value. Instance behavior returns the address of the beginning of this space. Forth also provides a facility by which a programmer can define new application-specific defining words, specifying both a custom defining behavior and instance behavior. Some examples include circular buffers, named bits on an I/O port, and automatically indexed arrays. Data objects defined by these and similar words are global in scope. The function provided by local variables in other languages is provided by the data stack in Forth (although Forth also has real local variables). Forth programming style uses very few named data objects compared with other languages; typically such data objects are used to contain data which is used by a number of words or tasks (in a multitasked implementation).[31] Forth does not enforce consistency of data type usage; it is the programmer's responsibility to use appropriate operators to fetch and store values or perform other operations on data. ProgrammingWords written in Forth are compiled into an executable form. The classical "indirect threaded" implementations compile lists of addresses of words to be executed in turn; many modern systems generate actual machine code (including calls to some external words and code for others expanded in place). Some systems have optimizing compilers. Generally speaking, a Forth program is saved as the memory image of the compiled program with a single command (e.g., RUN) that is executed when the compiled version is loaded. During development, the programmer uses the interpreter in REPL mode to execute and test each little piece as it is developed. Most Forth programmers therefore advocate a loose top-down design, and bottom-up development with continuous testing and integration.[32] The top-down design is usually separation of the program into "vocabularies" that are then used as high-level sets of tools to write the final program. A well-designed Forth program reads like natural language, and implements not just a single solution, but also sets of tools to attack related problems.[33] Code examplesHello world{{For|an explanation of the tradition of programming "Hello, World!"|"Hello, World!" program}}One possible implementation: HELLO <cr> Hello, world! The word A standard Forth system is also an interpreter, and the same output can be obtained by typing the following code fragment into the Forth console:
The word Mixing states of compiling and interpretingHere is the definition of a word This definition was written to use the ASCII value of the The following redefinition of The parsing word This definition used Both A complete RC4 cipher programIn 1987, Ron Rivest developed the RC4 cipher-system for RSA Data Security, Inc. The code is extremely simple and can be written by most programmers from the description:
The following Standard Forth version uses Core and Core Extension words only. This is one of many ways to test the code: ImplementationsBecause the Forth virtual machine is simple to implement and has no standard reference implementation, there are numerous implementations of the language. In addition to supporting the standard varieties of desktop computer systems (POSIX, Microsoft Windows, Mac OS X), many of these Forth systems also target a variety of embedded systems. Listed here are some of the more prominent systems which conform to the 1994 ANS Forth standard.
See also
References1. ^[https://web.archive.org/web/20101024223709/http://forth.gsfc.nasa.gov/ NASA applications of Forth] (original NASA server no longer running, copy from archive.org) 2. ^{{cite web|title=Intersil's RTX processors and Forth software controlled the successful Philae landing|url=http://www.mpeforth.com/press/MPE_PR_From_Telescope_to_Comet_2014_11_13.pdf|website=MicroProcessor Engineering Limited|date=October 13, 2014}} 3. ^{{cite web|title=Here comes Philae! Powered by an RTX2010|url=http://www.cpushack.com/2014/11/12/here-comes-philae-powered-by-an-rtx2010/|website=The CPU Shack Museum|date=October 12, 2014|accessdate=May 23, 2017}} 4. ^{{cite web|last1=Maher|first1=Jimmy|title=Starflight|url=http://www.filfre.net/2014/10/starflight/|website=The Digital Antiquarian|date=October 28, 2014|accessdate=May 23, 2017}} 5. ^{{cite web| last = | first = | authorlink = | url = http://www.forth.org/successes.html| title = Forth Success Stories| website = | pages = | publisher = | accessdate = 2006-06-09}} 6. ^{{cite web |last= |first= |authorlink= |url=http://forth.gsfc.nasa.gov/ |title=Space Related Applications of Forth |website= |pages= |publisher= |accessdate=2007-09-04 |deadurl=yes |archiveurl=https://web.archive.org/web/20101024223709/http://forth.gsfc.nasa.gov/ |archivedate=2010-10-24 |df= }} 7. ^{{cite web| last = | first = | authorlink = | url = http://www.ultratechnology.com/| title = Forth Chips Page| website = | pages = 54| publisher = | accessdate = 2006-06-09}} 8. ^{{cite web|url=https://www.freebsd.org/doc/handbook/boot-introduction.html|title=FreeBSD Handbook chapter 12.2: FreeBSD Boot Process |date= |website=freebsd.org |publisher=The FreeBSD Project |accessdate=30 April 2017 |quote=The loader is the final stage of the three-stage bootstrap process.}} 9. ^1 2 {{cite web | url=http://www.forth.com/resources/evolution/index.html | title=The Evolution of Forth | authors=C. H. Moore, E. D. Rather, and D. R. Colburn | publisher=ACM SIGPLAN History of Programming Languages Conference |date=April 1993 | work=ACM SIGPLAN Notices, Volume 28, No. 3. March 1993}} 10. ^{{cite web |last=Moore |first=Charles H |year=1991 |url=http://www.colorforth.com/HOPL.html |title=Forth - The Early Years |accessdate=2006-06-03 |deadurl=yes |archiveurl=https://web.archive.org/web/20060615025259/http://www.colorforth.com/HOPL.html |archivedate=2006-06-15 |df= }} 11. ^{{cite web | url=https://mywebspace.wisc.edu/lnmaurer/web/forth/Forth-79.pdf | title=The Forth-79 Standard | deadurl=yes | archiveurl=https://web.archive.org/web/20110713012838/https://mywebspace.wisc.edu/lnmaurer/web/forth/Forth-79.pdf | archivedate=2011-07-13 | df= }} 12. ^{{cite web | url=http://forth.sourceforge.net/standard/fst83/ | title=The Forth-83 Standard}} 13. ^{{cite web | publisher = ANSI technical committee X3J14 | date = 24 March 1994 | url = http://www.taygeta.com/forth/dpans.html | title = Programming Languages: Forth | accessdate = 2006-06-03 }} 14. ^{{cite web | publisher = Quartus Handheld Software | date = 13 September 2005 | url = http://quartus.net/files/PalmOS/Forth/Docs/stdref.pdf | title = Standard Forth (ANSI INCITS 215-1994) Reference | accessdate = 2013-04-14 }} 15. ^{{Citation | surname= | given= | author-link= | title=The Forth Language | journal=BYTE Magazine |volume=5 |issue=8 | year=1980 | page= | url=https://archive.org/details/byte-magazine-1980-08/}} 16. ^GraFORTH II Language Reference (PDF) 17. ^Campbell et al, "Up and Running with Asyst 2.0", MacMillan Software Co., 1987 18. ^{{cite web |last1=Claunch |first1=Carl |title=Restoring the original source code for FORTH on the IBM 1130 |url=https://rescue1130.blogspot.com/2018/03/restoring-original-source-code-for.html |website=rescue1130 |accessdate=July 30, 2018|date=2018-03-02 }} 19. ^{{cite book | last = Brodie | first = Leo | title = Starting Forth | edition = Second | year = 1987 | publisher = Prentice-Hall | isbn = 978-0-13-843079-5 | pages = 20}} 20. ^{{cite book | last = Brodie | first = Leo | title = Starting Forth | edition = Second | year = 1987 | publisher = Prentice-Hall | isbn = 978-0-13-843079-5 | pages = 14 }} 21. ^1 2 3 {{cite book | last = Brodie | first = Leo | title = Starting Forth | edition = Second | year = 1987 | publisher = Prentice-Hall | isbn = 978-0-13-843079-5 | pages = 16 }} 22. ^{{cite web | last = Rodriguez | first = Brad | url = http://www.zetetics.com/bj/papers/6809asm.txt | title = B.Y.O.ASSEMBLER | accessdate = 2006-06-19 | deadurl = yes | archiveurl = https://web.archive.org/web/20060623185833/http://www.zetetics.com/bj/papers/6809asm.txt | archivedate = 2006-06-23 | df = }} 23. ^{{cite web | last = Rodriguez | first = Brad | url = http://www.zetetics.com/bj/papers/8051task.pdf | title = MULTITASKING 8051 CAMELFORTH | accessdate = 2006-06-19 | deadurl = yes | archiveurl = https://web.archive.org/web/20060622063041/http://www.zetetics.com/bj/papers/8051task.pdf | archivedate = 2006-06-22 | df = }} 24. ^{{cite web | last = Rodriguez | first = Brad | date = July 1995 | url = http://www.zetetics.com/bj/papers/moving8.htm | title = MOVING FORTH | accessdate = 2006-06-19 | deadurl = yes | archiveurl = https://web.archive.org/web/20060623190109/http://www.zetetics.com/bj/papers/moving8.htm | archivedate = 2006-06-23 | df = }} 25. ^{{cite web | last = Shoebridge | first = Peter | date = 1998-12-21 | url = http://www.zeecube.com/archive/bdm/index.htm | title = Motorola Background Debugging Mode Driver for Windows NT | accessdate = 2006-06-19 | deadurl = yes | archiveurl = https://web.archive.org/web/20070606083244/http://www.zeecube.com/archive/bdm/index.htm | archivedate = 2007-06-06 | df = }} 26. ^{{cite journal| last = Martin| first = Harold M.|date= March 1991| title = Developing a tethered Forth model| journal = ACM Sigforth Newsletter| volume = 2| issue = 3| pages = 17–19| publisher = ACM Press| doi = 10.1145/122089.122091}} 27. ^{{cite book | last = Brodie | first = Leo | title = Starting Forth | url = http://www.forth.com/starting-forth/ | edition = Second | year = 1987 | publisher = Prentice-Hall | isbn = 978-0-13-843079-5 | pages = 200–202 }} 28. ^{{cite book | last = Brodie | first = Leo | title = Starting Forth | url = | edition = Second | year = 1987 | publisher = Prentice-Hall | isbn = 978-0-13-843079-5 | pages = 273 }} 29. ^{{cite book | last = Brodie | first = Leo | title = Starting Forth | url = | edition = Second | year = 1987 | publisher = Prentice-Hall | isbn = 978-0-13-843079-5 | pages = 199 }} 30. ^{{cite web |last = Ertl |first = M. Anton |authorlink = |author2 = Gregg, David |url = http://dec.bournemouth.ac.uk/forth/euro/ef03/ertl-gregg03.pdf |title = Implementation Issues for Superinstructions in Gforth |website = |pages = |publisher = |accessdate = 2006-06-19 |deadurl = yes |archiveurl = https://web.archive.org/web/20060625072706/http://dec.bournemouth.ac.uk/forth/euro/ef03/ertl-gregg03.pdf |archivedate = 2006-06-25 |df = }} 31. ^{{cite book | last = Brodie | first = Leo | title = Starting Forth | edition = 2nd | year = 1987 | publisher = Prentice-Hall | isbn = 978-0-13-843079-5 | pages = 241 | chapter = Under The Hood | quote = To summarize, there are three kinds of variables: System variables contain values used by the entire Forth system. User variables contain values that are unique for each task, even though the definitions can be used by all tasks in the system. Regular variables can be accessible either system-wide or within a single task only, depending upon whether they are defined within OPERATOR or within a private task.}}32. ^{{cite book | last = Brodie | first = Leo | authorlink = | editor = | others = | title = Thinking Forth | edition = | year = 1984 | publisher = Prentice-Hall | location = | isbn = 978-0-13-917568-8 | doi = | pages = | chapter = | url = }} 33. ^The classic washing machine example describes the process of creating a vocabulary to naturally represent the problem domain in a readable way. Further reading{{refbegin}}
10 : Forth programming language family|Concatenative programming languages|Stack-based virtual machines|Stack-oriented programming languages|Systems programming languages|Programming languages created in 1970|Extensible syntax programming languages|Programming languages with an ISO standard|Programming languages|1970 software |
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。