Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!usc!cs.utexas.edu!uwm.edu!linac!att!ucbvax!ENG.SUN.COM!wmb From: wmb@ENG.SUN.COM (Mitch Bradley) Newsgroups: comp.lang.forth Subject: Re: Conditionals ! Message-ID: <9103310107.AA03187@ucbvax.Berkeley.EDU> Date: 30 Mar 91 22:27:40 GMT Sender: daemon@ucbvax.BERKELEY.EDU Reply-To: Mitch Bradley Organization: The Internet Lines: 17 > The problem I see with IF( )ELSE )THEN is that it makes things more > difficult to "comment out" -- all the implementations of ( that I know > about would incorrectly identify )ELSE or )THEN as the end of the > comment. The use of "( ... )" to comment-out large blocks of code is fairly dubious anyway, since most code has interspersed comments, and most implementations of "(" do not nest. On the other hand, "( .. )" could be entirely enclosed inside "IF( .. )THEN" with no ill effects, e.g. IF( OVER + ( n1 n2 ) )THEN Mitch