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 / tw9085.pp
Size: Mime:
program chatserver;

{$mode objfpc}

procedure Sendln(MsgType: Longint; Str: PChar);
begin
  halt(1);
end;

procedure Sendln(MsgType: Longint; Str: array of PChar);
begin
  halt(0);
end;


procedure Sendln(MsgType: Longint; Str: array of char);
begin
  halt(1);
end;



begin
  Sendln(1, ['str1', 'str2'])
end.