in reply to Modules: Building blocks for the Daft Adventure
It actually calls it through a funtion and the above line is completely variable (so that it works from any function call)package comm; ... sub tell { my($client,$argument) = @_; ... return($output); } #### and it is used in that main program somethign like this: use comm; ... comm::tell($client,$arg);
|
|---|