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    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw1412.pp
Size: Mime:
PROGRAM initializationBug( INPUT, OUTPUT );
{$H+}
CONST
  bufferSize = 8;
  tableSize = 2;

TYPE
  bufferRecord = RECORD
    stringBuffer     : String;
    characterBuffer  : ARRAY[ 1..bufferSize ] OF CHAR;
  END;

VAR
  bufferTable  : ARRAY[ 1..tableSize ] OF bufferRecord;

BEGIN
  WRITELN( '< INITIALIZATION BUG HAS NOT OCCURRED!' );
END.