mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
24 lines
340 B
ObjectPascal
Executable File
24 lines
340 B
ObjectPascal
Executable File
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$codepage UTF8}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Classes
|
|
{ you can add units after this };
|
|
|
|
Var
|
|
AString : utf8string;
|
|
begin
|
|
AString := 'öö';
|
|
Case AString of
|
|
'öö' : WriteLn('match');
|
|
else
|
|
halt(1);
|
|
end;
|
|
end.
|
|
|