Repository URL to install this package:
|
Version:
3.2.0 ▾
|
{ Old file: tbs0235.pp }
{ Val(cardinal) bugs OK 0.99.11 (JM) }
program bug0233;
var s:string;
w:cardinal;
code:word;
begin
s:='192';
val(s,w,code);
if code<>0 then
begin
writeln('Error');
halt(1);
end
else
writeln(w);
end.