[fpc-pascal] some new features to delphi prisem

Jürgen Hestermann juergen.hestermann at gmx.de
Sat Feb 20 19:01:09 CET 2010



> y := case Other of
>          bla : 'hello';
>          foo : 'bye';
>          baz : 'adius';
>        end;

What do you gain with this?
Doesn't look much different to

case Other of
   bla : y := 'hello';
   foo : y := 'bye';
   baz : y := 'adius';
   end;




More information about the fpc-pascal mailing list