pascalabcnet/TestSamples/CompilationSamples/string_operator_test.pas

11 lines
146 B
ObjectPascal
Raw Normal View History

2015-05-14 22:35:07 +03:00
var
s1: string := 'a';
s2: string := 'b';
begin
Writeln(s1<s2);
Writeln(s1<=s2);
Writeln(s1>s2);
Writeln(s1>=s2);
Readln;
end.