Just curious if this is possible. I have some data on different
countries that i have stored in a multidimensional array called
data[][]. What I want to do is sort data[][] by population which
happens to be stored in data[i][4] where i is the index to
iterate from country to country.
I would like something like this:
sort!("a>b")(data[][4]);
Anybody have any suggestions?