On Saturday 14 December 2013 18:47:22 Martin Schreiber wrote:
> "
> var
>  i1,i2: integer;
>  c1: cardinal;
> begin
>  f1:= 1.0;            //ok
>  f1:= float(1);       //ok
>  i1:= 1;              //ok
>  c1:= 1;              //ok
>  i2:= i1 + c1;        //error
> end;
> "
Correction:
"
var
 i1,i2: integer;
 c1: cardinal;
begin
 i1:= 1;              //ok
 c1:= 1;              //ok
 i2:= i1 + c1;        //error
end;
"

Martin



------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to