pascalabcnet/TestSuite/formatter_tests/should/foreachvar2.pas

8 lines
95 B
ObjectPascal
Raw Permalink Normal View History

2018-09-20 22:21:16 +03:00
begin
var s := [1, 2, 3];
foreach var x in s do
begin
var y := x + x;
end;
end.