summaryrefslogtreecommitdiff
path: root/Bugs/lcsortdump
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafcol.lafayette.edu>1994-04-04 00:00:00 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1994-04-04 00:00:00 +0000
commit2304df62caa7d9be70e8b8bcdb454e139c9c103d (patch)
tree98a456ef0fbe59b1a02bfe68afa4a3d9afb4f21c /Bugs/lcsortdump
parent8990e3071044a96302560bbdb5706f3e74cf1bef (diff)
downloadperl-2304df62caa7d9be70e8b8bcdb454e139c9c103d.tar.gz
perl 5.0 alpha 8
[the last one taken from the September '94 InfoMagic CD; a similar style of cleanup as the previous commits was performed]
Diffstat (limited to 'Bugs/lcsortdump')
-rw-r--r--Bugs/lcsortdump6
1 files changed, 6 insertions, 0 deletions
diff --git a/Bugs/lcsortdump b/Bugs/lcsortdump
new file mode 100644
index 0000000000..4254305b4f
--- /dev/null
+++ b/Bugs/lcsortdump
@@ -0,0 +1,6 @@
+@S = (0, 1, 2, 3);
+for ("A", "D", "b", "c") { $foo{$i++} = $_; }
+# for (sort { lc($foo{$a}) cmp lc($foo{$b}) } @S) { print $foo{$_}, "\n"; }
+for (sort Alpha @S) { print $foo{$_}, "\n"; }
+
+sub Alpha { lc($foo{$a}) cmp lc($foo{$b}); }