Real-time Programming Language

Real-time Programming Language (RPL) is a compiled database programming language used on CMC/Microdata/McDonnell Douglas REALITY databases, derived and expanded from the PROC procedure language, with much extra functionality added. It was originally developed under the name "PORC" by John Timmons and Paul Desjardins in about 1975. "PORC" was then further developed by Tim Holland under the employ of George Ridgway's company Systems Management, Inc. (SMI) in Chicago. A number of large scale manufacturing applications were developed in RPL, including that which was in use at Plessey and GEC-Plessey Telecommunications limited in Liverpool and also the Trifid suite of manufacturing software.

Sources

gollark: Well, "array".
gollark: JS has an array/map distinction at least...
gollark: Adding a new element:```lualocal x = {1, 2, 3}table.insert(x, 4) -- inserts 4 at the end-- x is now {1, 2, 3, 4}table.insert(x, 2, "a") -- inserts "a" at position 2-- x is now {1, "a", 2, 3, 4}```
gollark: Defining an array-ish table:```lualocal example_table_name = {1, 2, 3, "hi", {}, "mixed types too"}```Iteration:```lualocal x = {"a", "b", "c"}for index, value in ipairs(x) do print(index, value)end-- prints 1 a then 2 b then 3 c```
gollark: Or more accurately maps which can be used as arrays.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.