Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sun-barr!olivea!spool.mu.edu!think.com!sdd.hp.com!elroy.jpl.nasa.gov!ncar!gatech!mcnc!rock.concert.net!mcmahan From: mcmahan@cs.unca.edu (Scott McMahan) Newsgroups: comp.lang.modula2 Subject: Re: Why no ** operator in Modula2? Keywords: -look-and-feel- Message-ID: <1991Jun18.171233.22657@rock.concert.net> Date: 18 Jun 91 17:12:33 GMT References: <1717.285A64EB@puddle.fidonet.org> <1663@balrog.ctron.com> Sender: news@rock.concert.net Organization: University of North Carolina at Asheville Lines: 32 The look and feel of Wirth's languages is the exact problem with them. While the theory is great, and I admire his modular, structured approach to programming, I hate *typing* everything! I mean, some of his modula-2 library modules have names that are simply too cumbersome to use. I'll spare you the examples. They lack a certain day to day comfortableness -- they are fine for theoretical models, but not practical use. and I *HATE* CaseSensiTivityInModulesAndProcedures! I never *use* uppercase/lowercase names (:-)) but the library modules do. To close: Which is better? WriteString("Amount: "); WriteInt(NumberOfThings[1]); Write("."); WriteLn(); -or- printf("Amount: %d.\n"); From a programmer's point of view? -- Scott McMahan FROM LibraryModule IMPORT Disclaimer, Signature; (or #include #include )