Language mavens: Is there a programming with "if then else ENDIF" syntax?

steven.oldner steven.oldner at gmail.com
Tue Nov 17 14:27:06 EST 2009


Along the COBOl line is ABAP, the 4gl language from SAP.

If today = 'Mon'.
  message 'oh boy'.
elseif today = 'Wed'.
  message 'Hump day'.
elseif today = 'Fri'.
  message 'TGIF'.
else.
  message 'get to work'.
endif.

The period is the statement teminator. Indentation and separte lines
are just to make it readable.




More information about the Python-list mailing list