21 lines
281 B
Text
21 lines
281 B
Text
|
|
program EmptyString;
|
||
|
|
|
||
|
|
{$APPTYPE CONSOLE}
|
||
|
|
|
||
|
|
uses SysUtils;
|
||
|
|
|
||
|
|
function StringIsEmpty(const aString: string): Boolean;
|
||
|
|
begin
|
||
|
|
Result := aString = '';
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
s: string;
|
||
|
|
begin
|
||
|
|
s := '';
|
||
|
|
Writeln(StringIsEmpty(s)); // True
|
||
|
|
|
||
|
|
s := 'abc';
|
||
|
|
Writeln(StringIsEmpty(s)); // False
|
||
|
|
end.
|