BLISS
BLISS is a historical programming language created in 1969.
50Years Old | 1,020Users | 0Jobs |
- BLISS ranks in the top 50% of languages
- the BLISS wikipedia page
- BLISS first appeared in 1969
- Read more about BLISS on Semantic Scholar
- See also: mips, ia-32, algol, c, doi
- I have 49 facts about BLISS. just email me if you need more.
Example code from Wikipedia:
MODULE E1 (MAIN = CTRL) = BEGIN FORWARD ROUTINE CTRL, STEP; ROUTINE CTRL = !+ ! This routine inputs a value, operates on it, and ! then outputs the result. !- BEGIN EXTERNAL ROUTINE GETNUM, ! Input a number from terminal PUTNUM; ! Output a number to terminal LOCAL X, ! Storage for input value Y; ! Storage for output value GETNUM(X); Y = STEP(.X); PUTNUM(.Y) END; ROUTINE STEP(A) = !+ ! This routine adds 1 to the given value. !- (.A+1); END ELUDOMEdit
Last updated February 11th, 2019