The R Project SVN R

Rev

Rev 76854 | Rev 86902 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 76854 Rev 76865
Line 329... Line 329...
329
print(list(a, expression(foo), b, quote(foo), c, base::list, d),
329
print(list(a, expression(foo), b, quote(foo), c, base::list, d),
330
      digits = 4, other = TRUE)
330
      digits = 4, other = TRUE)
331
 
331
 
332
## max.print fully obeyed by print and format
332
## max.print fully obeyed by print and format
333
## These failed briefly due to bug in r76734
333
## These failed briefly due to bug in r76734
334
o = options(max.print = 5)
334
o <- options(max.print = 5)
335
print(1:10)
335
1:10
336
print(as.numeric(1:10))
336
as.numeric(1:10)
337
print(as.character(1:10))
337
as.character(1:10)
338
print(as.complex(1:10))
338
as.complex(1:10)
339
print(as.raw(1:10))
339
as.raw(1:10)
340
options(o)
340
options(o)
341
 
341
 
342
## Cleanup
342
## Cleanup
343
rm(print.foo, obj, a, b, c, d, o)
343
rm(print.foo, obj, a, b, c, d, o)