View Single Post
  #63 (permalink)  
Old Thu Apr 22, 2004, 01:46pm
Camron Rust Camron Rust is offline
Official Forum Member
 
Join Date: Aug 1999
Location: In the offseason.
Posts: 12,263

#! /usr/bin/perl
%Weight = (
Maximum => 200,
Minimum => 120
);
$WeightFile = "Howbig.lst";
%AllPeople = &GetData($WeightFile);
foreach $Name (keys %AllPeople) {
print "Your $Name is so fat..." if ($AllPeople{$Name}{Weight} > $Weight{Maximum};
print "Your $Name is so skinny..." if ($AllPeople{$Name}{Weight} > $Weight{Minimum};
}
Reply With Quote