in reply to Re^3: socket checker in multiple hosts for multiple destination (Perl 6)
in thread socket checker in multiple hosts for multiple destination
If multiple blocks want to use the same module then you'll typically `use` that module in an outer scope:
use foo; # foo's and waldo's symbols available { use bar; # foo's, waldo's, and bar's symbols available } # foo's and waldo's symbols available { use qux; # foo's, waldo's, and qux's symbols available } # foo's and waldo's symbols available use waldo;
»ö« . o O ( "the celebrity tell-all of the Perl-6 cult?" )
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
| A reply falls below the community's threshold of quality. You may see it by logging in. |