On Tuesday 27 June 2017 14:32:16 Fred van Stappen wrote:
>
> Other thing...
>
> In fpc, to initialize a variable:
>
> var
> x : integer = -1 ;
> y : integer = -1 ;
> z: integer = -1 ;
>
> I would prefer:
>
> var
> x, y, z : integer = -1 ;
>
MSElang probably will have no initializers for local variables.
"
var
 x, y, z : integer = -1 ;
"
actually is
"
var
 x, y, z : integer;
begin
 x:= -1;
 y:= -1;
 z:= -1;
"
so I think it should be written in this style.

Martin

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to