fpc/tests/webtbs/tw5001.pp
Jonas Maebe 2b3c7280d8 - removed readln
git-svn-id: trunk@3268 -
2006-04-18 09:26:13 +00:00

18 lines
302 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 5001 }
{ Submitted by "Vincent Snijders" on 2006-04-09 }
{ e-mail: vsnijders@quicknet.nl }
program Project1;
{$mode objfpc}{$H+}
resourcestring
s = 'test';
begin
writeln(s);
if length(s)=0
then halt(1);
if (s<>'test')
then halt(1);
end.