Skip to content
Prev 342 / 63421 Next

Lost comments (was Re: R-alpha: New version of R for testing)

On Wed, 23 Jul 1997, Ross Ihaka wrote:

            
More generally each comment between the last statement of a block and its
closing bracket is lost!! I wonder if this is really an advantage: I just
"uncommented" a line for test purposes to see some minutes later that I
had to retype it again. :-(
+ function () 
+ {
+         for (i in 1:3) {
+                 print(1)
+                #print(2)
+         }
+         More()
+         Commands()
+ }
function () 
{
        for (i in 1:3) {
                print(1)
        }
        More()
        Commands()
}

Arne Kovac