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 / test / tisobuf2.pp
Size: Mime:
{ %OPT=-Sr }
{$mode iso}
program test(input, output, testfile);

  var
    testfile : text;
    s : array[1..100] of char;
  begin
    rewrite(testfile);
    writeln(testfile,'Hello world');
    close(testfile);

    assign(testfile,'TESTFILE.txt');
    reset(testfile);
    readln(testfile,s);
    if (s[1]<>'H') or (s[2]<>'e') then
      halt(1);
    close(testfile);
    erase(testfile);

    writeln('ok');
  end.