mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
13 lines
142 B
ObjectPascal
13 lines
142 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw38310c;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
StrUtils, Math, SysUtils;
|
|
|
|
begin
|
|
IfThen(true, 'A', IfThen(true, 'B', 'C'));
|
|
end.
|