Leon Brocard sent the following bits through the ether:
> More soon.
Hashes again. Patch to vmeth.t. Last patch for today I think.
Leon
--
Leon Brocard.............................http://www.astray.com/
Iterative Software...........http://www.iterative-software.com/
... Well, there's Greebo. He keeps my feet warm
--- vmeth.t.orig Sat Jun 16 22:11:32 2001
+++ vmeth.t Sat Jun 16 22:12:29 2001
@@ -122,17 +122,17 @@
# HASH_OPS
-- test --
-[% hash.keys.join(', ') %]
+[% hash.keys.sort.join(', ') %]
-- expect --
a, c
-- test --
-[% hash.values.join(', ') %]
+[% hash.values.sort.join(', ') %]
-- expect --
b, d
-- test --
-[% hash.each.join(', ') %]
+[% hash.each.sort.join(', ') %]
-- expect --
a, b, c, d