my @stuff = ( { name => 'tim', time => '5:00', duty => 'floors', }, # Fill in the others just as above ); for my $thing (@stuff) { print "$thing->{name} is on $thing->{duty} duty at $thing->{time}\n"; }