Help for this page
#!/usr/bin/perl -w use strict; ... ## do various other things, which get done in lots of ## other places too, using subroutines in dbmodule: Write_Bar;
package dbmodule; require Exporter; our @ISA = ("Exporter"); ... our @EXPORT = qw/Write_Bar Insert_Into_BookingManager DBModule_Close/; 1;