fpc/tests/tbs/tb0079.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

25 lines
437 B
ObjectPascal

{ Old file: tbs0091.pp }
{ missing standard functions in constant expressions OK 0.99.7 (PFV) }
{ Page 22 of The Language Guide of Turbo Pascal }
var
t: byte;
const
a = Trunc(1.3);
b = Round(1.6);
c = abs(-5);
ErrStr = 'Hello!';
d = Length(ErrStr);
e = Lo($1234);
f = Hi($1234);
g = Chr(34);
h = Odd(1);
i = Ord('3');
j = Pred(34);
l = Sizeof(t);
m = Succ(9);
n = Swap($1234);
o = ptr(0,0);
Begin
end.