fpc/tests/webtbs/tw38310b.pp

13 lines
142 B
ObjectPascal

{ %NORUN }
program tw38310b;
{$mode objfpc}{$H+}
uses
StrUtils, SysUtils, Math;
begin
IfThen(true, 'A', IfThen(true, 'B', 'C'));
end.