mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
13 lines
165 B
ObjectPascal
13 lines
165 B
ObjectPascal
program postest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
var
|
|
wchar: WideChar;
|
|
wstring: WideString;
|
|
|
|
begin
|
|
wchar := 'a';
|
|
wstring := 'badc';
|
|
writeln(Pos(wchar, wstring));
|
|
end. |