#include <TRandom.h>
#include <iostream>
void macro1()
{
TRandom r;
for (int i=0; i<10; i++) {
std::cout << r.Rndm() << std::endl;
}
for (Int_t i=0; i<100000; i++) {
r.Rndm();
}
}
