Hey all,
I would like to sort a list from highest to lowest key.
Here my example:
set {_a} to "Marion"
set {_b} to "Alex"
set {_c} to "Walburg"
add {_a} to {_test::*}
add {_b} to {_test::*}
add {_c} to {_test::*}
set {_test::a} to 100
set {_test::b} to 200
set {_test::c} to 300
After sorting this list the output should be:
Walburg - 300
Alex - 200
Marion - 100
I would like to sort a list from highest to lowest key.
Here my example:
set {_a} to "Marion"
set {_b} to "Alex"
set {_c} to "Walburg"
add {_a} to {_test::*}
add {_b} to {_test::*}
add {_c} to {_test::*}
set {_test::a} to 100
set {_test::b} to 200
set {_test::c} to 300
After sorting this list the output should be:
Walburg - 300
Alex - 200
Marion - 100