On Nov 16, 12:54 pm, Steve Ferg <[email protected]> wrote: <snip> > Does anybody know a language with this kind of syntax for > ifThenElseEndif?
Modern-day COBOL:
IF some-condition
do-something
ELSE
do-something-else
END-IF.
The period is also meaningful as a statement terminator in COBOL,
so it's not as clean as one might like.
I, too, like the Python way.
Cheers,
Steve J. Martin
--
http://mail.python.org/mailman/listinfo/python-list
