fpc/tests/tbs/tb0227.pp
yury f96b571e38 * skip some tests for wince.
git-svn-id: trunk@4110 -
2006-07-06 19:08:23 +00:00

22 lines
355 B
ObjectPascal

{ Old file: tbs0266.pp }
{ linux crt write cuts 256 char OK 0.99.13 (PFV) }
{ %skiptarget=wince }
PROGRAM t10;
USES CRT;
VAR S: STRING;
X: BYTE;
BEGIN
S := '';
FOR X := 1 TO 253 DO S:=S+'-';
S := S+'_!';
WRITE(S);
WRITE('*',S);
END.