CPL, aka Combined Programming Language, is a programming language created in 1963 by Christopher Strachey.
#1009on PLDB | 61Years Old |
CPL (Combined Programming Language) is a multi-paradigm programming language, that was developed in the early 1960s. It is an early ancestor of the C language via the BCPL and B languages.. Read more on Wikipedia...
Max(Items, ValueFunction) = value of
§ (Best, BestVal) = (NIL, -∞)
while Items do §
(Item, Val) = (Head(Items), ValueFunction(Head(Items)))
if Val > BestVal then (Best, BestVal)Â := (Item, Val)
Items := Rest(Items) §⃒
result is Best §⃒
Feature | Supported | Example | Token |
---|---|---|---|
Assignment | ✓ | := |