> x<- list (foo=1:4, bar =0.60)
## x[1], x ["foo"] will produce the same result - a list 1, 2, 3, 4.
## x[[1]], x[["foo"]], x$foo will produce the same result - a sequence of 1 to 4.
> x<- list (foo=1:4, bar =0.60)
## x[1], x ["foo"] will produce the same result - a list 1, 2, 3, 4.
## x[[1]], x[["foo"]], x$foo will produce the same result - a sequence of 1 to 4.