Klar geht das
Delphi-Quellcode:
if foo then
if bar then
doBar()
else
else
doFoo();
Jupp, es geht alles, oder man dreht es um
Delphi-Quellcode:
if not foo then
doFoo()
else
if bar then
doBar();
if not foo then
doFoo()
else if bar then
doBar();
uvm.
Nicht, daß sonst noch jemand auf eine andere Idee kommt.
Delphi-Quellcode:
if foo then
else
doFoo();
OK, zumindestens ist der Code nicht falsch.
PS: Ich hatte vor dem ersten Öffnen an HEXen gedacht.