summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw13619.pp
blob: 7528bf885f32edb240959a83518bc0c1ec291741 (plain)
1
2
3
4
5
6
7
8
9
10
uses
  Math, StrUtils;
begin
  if (IfThen(1 > 2, 1, 2) <> 2) then
    halt(1);
  if (IfThen(1 > 2, '1', '2') <> '2') then
    halt(2);
  if (IfThen(1 > 2, '123', '456') <> '456') then
    halt(3);
end.