pascalabcnet/InstallerSamples/WhatsNew/3_8_2/NotIn.pas
Mikhalkovich Stanislav 621eda6352 Add examples 3/8/2
2022-04-18 14:37:03 +03:00

6 lines
104 B
ObjectPascal

begin
var a := Arr(1,3,5);
if 4 not in a then
Print('4 not in ' + a.JoinToString(','));
end.