RosettaCodeData/Task/Empty-string/Delphi/empty-string.delphi
2023-07-01 13:44:08 -04: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.