PascalABC.NET
begin
Range('A','Z').Print(' ')
end.
===== PascalABC.NET =====
var s := '';
for var a := 'A' to 'Z' do
s += a;
s.Println
end