I\'m sure that there is a function for that. I just want to make a list of 1000 numbers, each one of them which should be random.
You need to correctly seed first of all.
_ = rand:seed(exs1024s), [rand:uniform(100) || _ <- lists:seq(1, 1000)].