The R Project SVN R

Rev

Rev 15735 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15735 Rev 38674
Line 1... Line 1...
1
foo <-
1
foo <-
2
function(...) 
2
function(...)
3
{
3
{
4
  args <- list(...)
4
    args <- list(...)
5
  print(args)
5
    print(args)
6
  print(names(args))
6
    print(names(args))
7
  TRUE
7
    TRUE
8
}    
8
}