pascalabcnet/InstallerSamples/WhatsNew/3_7_2/ext_foreach.pas
2022-04-18 21:34:18 +03:00

11 lines
394 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Расширенный foreach с распаковкой значений в переменные
begin
var a := Arr((1,2),(3,4),(5,6));
foreach var (x,y) in a do // Распаковка кортежей
Print(x,y);
Println;
var b := Arr(|1,2,3|,|4,5|,|6,7,8,9|);
foreach var (x,y) in b do // Распаковка последовательностей
Print(x,y);
end.