Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!unix.cis.pitt.edu!dsinc!widener!ukma!rex!samsung!cs.utexas.edu!sun-barr!olivea!mintaka!bloom-beacon!eru!hagbard!sunic!mcsun!ukc!tcdcs!wsl!jja From: jja@wsl.ie (John Allen on wsl) Newsgroups: comp.object Subject: Re: Readability of Ada Message-ID: <768@wsl.ie> Date: 13 May 91 15:21:54 GMT References: <1991May1.041007.14124@odi.com> <1991May9.040947.28053@netcom.COM> Reply-To: jja@wsl.ie (John Allen on wsl) Distribution: comp Organization: Workhorse Systems Limited, Dublin Lines: 51 In article <1991May9.040947.28053@netcom.COM> jls@netcom.COM (Jim Showalter) writes: > > for Current_Day in Monday..Friday loop > Go_To_Work; > end loop; > > while Batter_Remains_In_Bowl and People_Are_Still_Hungry loop > Make_More_Pancakes; > end loop; > > if You_Are_Sleepy then > Go_To_Sleep; > end if; > Similarly find an ADA programmer who definitely cannot understand this. 'C' for (Current_Day=Monday; Current_Day <= Friday; Current_Day = Current_Day + 1) { Go_To_Work(); } while (Batter_Remains_In_Bowl && People_Are_Still_Hungry) { Make_More_Pancakes(); } if (You_Are_Sleepy) { Go_To_Sleep(); } 'Pascal' for Current_Day:=Monday TO Friday DO Go_To_Work; while Batter_Remains_In_Bowl AND People_Are_Still_Hungry DO Make_More_Pancakes; if You_Are_Sleepy THEN Go_To_Sleep; -- People that don't know want to know from the people that do know and if the poeple that do know don't tell the people that don't know then the people that don't know still won't know. "Don't quote me on any issue whatsoever."