#!/usr/bin/perl -w for (1 .. 10) { $numbers{$_} = $_ . "\n"; } for (1 .. 10) { print $numbers{$_}; } [download]
In reply to (Dermot) Re: hash loop print by Dermot in thread hash loop print by kelsey