MTAA-RR » news » twhid » notes for a liberated computer language:
Jul 16, 2006
Notes for a Liberated Computer Language
posted at 19:05 GMT by T.Whid in /news/twhid
From the Control Structures section:
Historic
Executes a code block by evaluating an entity according to its current value as well as all previous values.
Exceptional
Designates an abnormal flow of program execution and guarantees that it will never be handled as an error.
Flee
A branching construct that moves flow control from the current instruction to a stray position in the program.
Maybe
Allows for possible, but not guaranteed, execution of code blocks.
Never
Guarantees that a block of code will never be executed. This is similar to block quotes in other languages, except that “never” blocks are not removed during compilation.
Potential
Evaluates an entity only according to as yet unrealized possibility.
Check it out… permanent link to this post
MTAA-RR » news » twhid » notes for a liberated computer language