On Tuesday 12 November 2013 09:54:11 Michael Schnell wrote:
>
> With my background of C fro me the ";" is necessary to close a
> statement. This I never do a line that does not end with either of ";"
> or "begin"
>
In Pascal (and in MSElang) ';' does not terminate but separate a statement. 
Empty statements are possible ->
"
 if a = 1 then
  b:= 88;
 end;
"
or
"
 if a = 1 then
  b:= 88;;;;;
 end;
"
is OK.

Martin

------------------------------------------------------------------------------
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&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