RosettaCodeData/Task/Empty-string/Delphi/empty-string.delphi
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

20 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.