Commit 62374aef authored by gerv%gerv.net's avatar gerv%gerv.net

Fix "variable declaration masks earler declaration" warning. No bug number.

parent 7d5440d0
......@@ -60,7 +60,7 @@ is(lsearch(\@list,'<"\\%'),3,'lsearch 2');
is(lsearch(\@list,'kiwi'),-1,'lsearch 3 (missing item)');
#max() and min():
my @list = (7,27,636,2);
@list = (7,27,636,2);
is(max(@list),636,'max()');
is(min(@list),2,'min()');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment