mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:28:04 +02:00
17 lines
293 B
ObjectPascal
17 lines
293 B
ObjectPascal
{ %OPT=-gt -O3 }
|
|
program project1;
|
|
|
|
{$mode objfpc}
|
|
|
|
function CharPos(const S: AnsiString; const C: AnsiChar; const Index: SizeInt): SizeInt;
|
|
begin
|
|
for Result := Index to Length(S) do
|
|
if S[Result] = C then
|
|
Exit;
|
|
Result := 0;
|
|
end;
|
|
|
|
begin
|
|
Writeln(CharPos('Hello!', '!', 1));
|
|
end.
|