home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.ee.pdx.edu
/
2014.02.ftp.ee.pdx.edu.tar
/
ftp.ee.pdx.edu
/
pub
/
users
/
Harry
/
compilers
/
p6
/
tst
/
ifErr.pcat
< prev
next >
Wrap
Text File
|
2005-11-18
|
373b
|
19 lines
(* Check conditional expr in IF, ELSIF, and WHILE.
**
** It contains 3 errors.
*)
program is begin
if 12345 then (*** Error here ***)
write ("hello");
end;
if true then
write ("hello");
elseif 3.1415 then (*** Error here ***)
write ("hello");
end;
while 123.456 do (*** Error here ***)
write ("hello");
end;
end;