The R Project SVN R

Rev

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

Rev 20124 Rev 39826
Line 1... Line 1...
1
 
1
 
2
R : Copyright 2002, The R Development Core Team
2
R version 2.5.0 Under development (unstable) (2006-11-07 r39824)
3
Version 1.6.0 Under development (unstable) (2002-06-17)
3
Copyright (C) 2006 The R Foundation for Statistical Computing
-
 
4
ISBN 3-900051-07-0
4
 
5
 
5
R is free software and comes with ABSOLUTELY NO WARRANTY.
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
6
You are welcome to redistribute it under certain conditions.
7
You are welcome to redistribute it under certain conditions.
7
Type `license()' or `licence()' for distribution details.
8
Type 'license()' or 'licence()' for distribution details.
8
 
9
 
9
R is a collaborative project with many contributors.
10
R is a collaborative project with many contributors.
10
Type `contributors()' for more information.
11
Type 'contributors()' for more information and
-
 
12
'citation()' on how to cite R or R packages in publications.
11
 
13
 
12
Type `demo()' for some demos, `help()' for on-line help, or
14
Type 'demo()' for some demos, 'help()' for on-line help, or
13
`help.start()' for a HTML browser interface to help.
15
'help.start()' for an HTML browser interface to help.
14
Type `q()' to quit R.
16
Type 'q()' to quit R.
15
 
17
 
16
> #### STRICT test suite in the spirit of no-segfaults,
18
> #### STRICT test suite in the spirit of no-segfaults,
17
> #### but with explicit statements.
19
> #### but with explicit statements.
18
> 
20
> 
19
> options(error=expression(NULL))
21
> options(error=expression(NULL))
Line 28... Line 30...
28
+   complex(2^30+1)
30
+   complex(2^30+1)
29
+ character(2^30+1)
31
+ character(2^30+1)
30
+ vector("list", 2^30+2)
32
+ vector("list", 2^30+2)
31
+ }
33
+ }
32
> 
34
> 
-
 
35
> getenv("USER") # should produce correct error message.
-
 
36
Error: 'getenv' is defunct.
-
 
37
Use 'Sys.getenv' instead.
-
 
38
See help("Defunct")
-
 
39
>