The R Project SVN R

Rev

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

Rev 39826 Rev 42973
Line 1... Line 1...
1
 
1
 
2
R version 2.5.0 Under development (unstable) (2006-11-07 r39824)
2
R version 2.7.0 Under development (unstable) (2007-09-21 r42937)
3
Copyright (C) 2006 The R Foundation for Statistical Computing
3
Copyright (C) 2007 The R Foundation for Statistical Computing
4
ISBN 3-900051-07-0
4
ISBN 3-900051-07-0
5
 
5
 
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
7
You are welcome to redistribute it under certain conditions.
7
You are welcome to redistribute it under certain conditions.
8
Type 'license()' or 'licence()' for distribution details.
8
Type 'license()' or 'licence()' for distribution details.
Line 35... Line 35...
35
> getenv("USER") # should produce correct error message.
35
> getenv("USER") # should produce correct error message.
36
Error: 'getenv' is defunct.
36
Error: 'getenv' is defunct.
37
Use 'Sys.getenv' instead.
37
Use 'Sys.getenv' instead.
38
See help("Defunct")
38
See help("Defunct")
39
> 
39
> 
-
 
40
> ## bad infinite recursion / on.exit / ... interactions
-
 
41
> bar <- function() 1+1
-
 
42
> foo <- function() { on.exit(bar()); foo() }
-
 
43
> foo() # now simple "infinite recursion"
-
 
44
Error: evaluation nested too deeply: infinite recursion / options(expressions=)?
-
 
45
>