Perlコーディング初心者質問スレ Part 65

このエントリーをはてなブックマークに追加
219nobodyさん
「初めてのperl」の練習問題を解いています
http://docstore.mik.ua/orelly/perl4/lperl/appa_11.htm
上の問題 2. の解説に
And second, we now must sort the resulting list,
because some of the names that begin with a dot must be interleaved appropriately
either before or after the list of things without a beginning dot.
とあり、和訳では
「ソートしなければなりません ...
ドットで始まる名前の中には、ドット以外で始まる名前の前に置かれるものと
後ろに置かれるものがあるからです」と訳されています

手元でいくつか試した限りでは perl の sort 関数を試すと、ドットで始まる文字列の要素は全て
ドット以外で始まる文字列の要素より前に来ました

本文のように sort すると「ドットで始まる名前(文字列)」が「ドット以外で
始まる名前」の後ろに来るケースとは具体的にどのような場合なのでしょうか