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 / tw3124.pp
Size: Mime:
{ Source provided for Free Pascal Bug Report 3124 }
{ Submitted by "Radoslaw Stachowiak" on  2004-05-29 }
{ e-mail: zenek_tm@tenbit.pl }
program strtest;
{$apptype console}
{$ifdef fpc}
  {$mode objfpc}
{$endif}

uses strutils;

var
  a, b: ansistring;

begin
  a:='aaaa';
  b:='AaAa';
  if AnsiStartsText(a, b) then
    writeln('ok')
  else
    halt(1);
end.