fpc/tests/webtbs/tw33840.pp
2018-07-06 15:57:17 +00:00

16 lines
195 B
ObjectPascal

{ %NORUN }
program tw33840;
{$mode delphi}
uses
SysUtils;
const
NULLSTRING = '';
begin
if String.IsNullOrWhiteSpace(NULLSTRING) then
Writeln('String is empty');
end.