pascalabcnet/TestSamples/CompilationSamples/case1.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

12 lines
112 B
ObjectPascal

function Test: integer;
begin
Result := 3;
end;
begin
case Test of
1,2 : writeln(2);
3 : writeln(4);
end;
end.