On Saturday 16 November 2013 13:56:09 Ivanko B wrote:
> Correspoinding Pascal syntax looks like :
> ----------------
> function finc1(var1: integer): boolean;
> var
>   locvar1: integer
> begin
>   locvar1:= 2; locvar*=3;
>   if 2 <> var1 then begin
>     result:= true
>   end else begin
>     result:= false;
>   end;
> end;

Current MSElang syntax:
"
function finc1(var1: integer): boolean;
var
 locvar1: integer;
begin
 locvar1:= 2; //locvar*=3; what is "*="?
 if 2 <> var1 then
  result:= true;
 else
  result:= false;
 end;
end;
"

Martin

------------------------------------------------------------------------------
DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to