On Friday 15 November 2013 07:33:08 Martin Schreiber wrote:

> or
> "
> type
>  boolty = :8;    //bool8
>  cardty = :+8;   //card8
>  intty = :-8;    //int8
>  charty = :#8;   //char8
>  floatty = :.64; //flo64
>  recordty
>   b: :8;   //bool8
>   c: :+8;  //card8
>   i: :-8;  //int8
>   ch: :#8; //char8
>   f: :.64; //flo64
>  end;
> "
or
"
type
 boolty = high: 8;             //bool8
 cardty = 0 to high: 8;        //card8
 intty = low to high: 8;       //int8
 charty = #high: 8;            //char8
 floatty = .low to .high: 64;  //flo64
 recordty
  b: high: 8;           //bool8
  c: 0 to high: 8;      //card8
  i: low to high: 8 ;   //int8
  ch: #high: 8;         //char8
  f: .low to .high: 64; //flo64
 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
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to