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

11 lines
152 B
ObjectPascal

unit set_unit1;
type TRealSet = set of real;
const set1 : set of char = ['1','2','3'];
procedure test2;
begin
writeln('set1 ','2' in set1);
end;
end.