Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / PascalScript / Samples / Import / bytearray.rops
Size: Mime:
Program IFSTest;
type
  TByteArray = array of byte;
var
  x: TByteARray;
Begin
  try
    x[0] := 1;
   // will cause an runtime error (Out Of Record Fields Range)
    writeln('Not supposed to be here');
  except
     Writeln('Error, which is ok since we accessed a field outside it''s bounds');
  end;
End.