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

17 lines
197 B
ObjectPascal

{$R+}
function d(a,b:string):Integer;
begin
d := Ord(a[1])-Ord(b[1]);
end;
var
c: SmallInt;
ch : char;
begin
ch:='A';
c := Byte(ch)-Byte('B');
WriteLn(c);
WriteLn(d('a','b'));
end.