The problem is very simple: write a program that accepts a single unsigned integer from the command line, and prints out that many random numbers on the standard output, in ascending order.
For example:
input:
5
output (you can use any type of whitespace):
557
9424
19212
32293
39135
However, you are not allowed to define any variables. Any at all.
Score is given by code length, shortest wins, and by up-votes if equal.
The random numbers can be anything generated by a reasonable pseudo-random generator with a uniform distribution: for example, integers at least 8 bits long (no cheap "0 0 0 0 0 1 1 1 1 " one bit solutions, please), or real numbers (e.g. float) between 0 and 1. In dynamically typed languages, the fist assignment counts as definition in our context, so no cheap Matlab solutions, please :)
~[4]*p. – Howard Jun 29 '12 at 16:25