pascalabcnet/TestSuite/CompilationSamples/String3.pas

12 lines
292 B
ObjectPascal
Raw 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.

// Строки. Строка может иметь произвольную длину
var s: string;
begin
s := 'abcdefghijklmnopqrstuvwxyz';
s := s + Uppercase(s);
s += s;
s += s;
s += s;
writeln('Длина строки = ',s.Length);
writeln('Cтрока: ',s);
end.