On 5 Oct 2006, at 08:39, Robin Hankin wrote:

> Hi  Wee-Jin
>
> you can block out bits of R code with
>
> if(FALSE){
>  <code not executed>
> }
>
> For the line breaking, R deals with incomplete lines by not  
> executing the statement
> until you finish it.  In the function case, it waits for you to  
> close a bracket.
>
>
> If you type:
>
> myFunc(a=3,
> b=5,
> c=6,
> d=7
> )
>
> myFunc() will only execute
> when you close the bracket
>
>
> HTH
>
> rksh
>

Great stuff. That's exactly what I was looking for.

Thanks a bunch :)
Wee-Jin

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to