Path: utzoo!attcan!uunet!aplcen!haven!cs.wvu.wvnet.edu!cerc.wvu.wvnet.edu!cathedral!siping From: siping@cathedral.cerc.wvu.wvnet.edu (Siping Liu) Newsgroups: comp.lang.ada Subject: **** a simple example **** Message-ID: <794@babcock.cerc.wvu.wvnet.edu> Date: 14 Sep 90 22:38:11 GMT Sender: news@cerc.wvu.wvnet.edu Lines: 18 I am a beginer of ADA and I have a very simple question which my book didn't tell me how to do it. At the top level, can I have one procedure calling another procedure? My book (software engineering with ada by Grady Booch) says so but my compiler tells me "proc1" is not declared: procedure proc1 is begin .... end proc1; procedure proc2 is begin .... proc1; .... end proc2; Can you tell me what's wrong? Thank you for your help. siping@cerc.wvu.wvnet.edu