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.0.0 / tests / webtbs / tw7210.pp
Size: Mime:
{%TARGET=go32v2 }
{ %NOTE=This test requires a go32v2 NASM assembler }
{ %OPT=-Anasmcoff }

{ Check mantis bug report 2710 }

program worldcrash;
var
  test : string;
begin
writeln('Hello, world!');
test:='Hello, world!';
  if (test[1]<>'H') or (test[length(test)]<>'!') then
    begin
      writeln('Error within tw7210.pp test');
      halt(1);
    end;
end.