fpc/tests/webtbs/tw29353.pp
2016-01-20 21:11:26 +00:00

24 lines
336 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 : String;
begin
AString := 'öö';
Case AString of
'öö' : WriteLn('match');
else
halt(1);
end;
end.