> On Jun 21, 2018, at 2:56 AM, Sven Barth via fpc-pascal 
> <fpc-pascal@lists.freepascal.org> wrote:
> 
> Addendum: the support for the "+" operator is now coupled to a new modeswitch 
> "ArrayOperators".

Finally got to try this. It’s really satisfying being able to do:

var
        arr: array of integer = (1, 2, 3);
        i: integer;
begin
        arr += [4];
        for i in arr do
                writeln(i);


thanks!



Regards,
        Ryan Joseph

_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to