Displaying 1 result from an estimated 1 matches for "689149".
Did you mean:
681149
1998 Jun 23
1
redundant names
I don't often suggest an incompatibility with S, but I think this behavior in S
and R is very dangerous:
> c(list(a="a"), b=2, a=1)$a
[1] "a"
> c(list(a="a"), b=2, a=1)
$a
[1] "a"
$b
[1] 2
$a
[1] 1
I think this is a case where we may want incompatibility with S in order to
enforce good programming and catch unintentional errors. I cannot think of