The R Project SVN R

Rev

Rev 14950 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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