@@ -471,7 +471,6 @@ var
begin
Code:=0;
x:=Number(S);
- writeln('val ',x);
if isNaN(x) then
case copy(s,1,1) of
'$': x:=Number('0x'+copy(S,2));
@@ -3691,13 +3691,11 @@ Var
N:=S;
- F:=Copy(N,1,1);
- if (F='$') then
- Radix:=16
- else if (F='&') then
- Radix:=8
- else if (F='%') then
- Radix:=2;
+ case Copy(N,1,1) of
+ '$': Radix:=16;
+ '&': Radix:=8;
+ '%': Radix:=2;
+ end;
If Radix<>10 then
Delete(N,1,1);
J:=parseInt(N,Radix);