next up previous
Next: The case Statement Up: Looping and Making Choices Previous: The while And until

The if tex2html_wrap_inline473 then tex2html_wrap_inline473 else Structure

The simplest form on an if statement is this:
if control-command
then
commands
fi

The general form of the if tex2html_wrap_inline473 else construction is this:
if control-command
then
commands
else
commands
fi

The general form of the if then tex2html_wrap_inline473 elif then tex2html_wrap_inline473 else construction looks like this:
if control-command 1
then
commands
elif control-command 2
then
commands
else
commands
fi



Roger Hampel
Mon Feb 2 09:39:25 MET 1998