Hello all,
 
My question for you all is if fork is called, can the parent do one thing and the child do another and if so how?
 
 
Say for example, Id like the parent to fish() and the child to cut_bait().

#!/usr/bin/perl
# Chad.pm -
package Chad;
my $ref = {
name    => 'Chad Alan Billigmeier',   
title   => 'Assistant Software Engineer',   
company => 'YesMail | CRM Group',     
email   => '[EMAIL PROTECTED]',
phone   => '978.247.5719',            
fax     => '978.684.3112',            
}
1; # it compiles!!!

 

Reply via email to