Here is another example. Although it's not easy to know which random number generator is best, there are certainly some bad choices in R:
<br />
RNGkind("Marsaglia-Multicarry", "Kinderman-Ramage")<br />
set.seed(1234L)<br />
tmp=rnorm(1e7L);dim(tmp)=c(1e3L,1e4L)<br />
plot(apply(tmp,2L,max),pch='.',cex=2)<br />
</p>