Hi All, Looking at the following:
> my @things = <a5.1 a2.3 b1a23 a1b33 a1 a2rc2>.sort: *.Version; dd @things; for @things {say $_;}
Array @things = ["a1b33", "a1", "a2rc2", "a2.3", "a5.1", "b1a23"] a1b33 a1 a2rc2 a2.3 a5.1 b1a23 Other than not quite getting the alpha, beta, and release candidate thing down, I do not understand: .sort: *.Version 1) What does the `:` do? 2) Why the space? 3) What does the `*` do? 4) Is the dot before Version mean something other than .Version being a method? Yours in confusion, -T