mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-08 04:39:41 +01:00
15 lines
150 B
ObjectPascal
15 lines
150 B
ObjectPascal
program test1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
OpenSSL;
|
|
|
|
begin
|
|
if InitSSLInterface then
|
|
Writeln('Success')
|
|
else
|
|
Writeln('Holy shit!');
|
|
end.
|
|
|