Skip to content
Prev 32307 / 63424 Next

print.closure at the R level

Yesterday's patch did not print the attributes. This one seems fine:

 > f <- function(){}
 > attr( f, "yada" ) <- function( ) "lobster bisk"
 > f
function(){}
attr(,"yada")
function( ) "lobster bisk"

Romain
Romain Francois wrote: