home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex63.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  194 b   |  12 lines

  1. Program Example63;
  2.  
  3. { Program to demonstrate the SizeOf function. }
  4. Var
  5.   I : Longint;
  6.   S : String [10];
  7.  
  8. begin
  9.   Writeln (SizeOf(I));  { Prints 4  }
  10.   Writeln (SizeOf(S));  { Prints 11 }
  11. end.
  12.