############################################## # $Id$ # # Save this file as 99_myUtils.pm, and create your own functions in the new # file. They are then available in every Perl expression. package main; use strict; use warnings; sub myUtils_Initialize($$) { my ($hash) = @_; } # Enter you functions below _this_ line. 1;