Exporter::Tidy
- Another Exporter with a slightly different syntax.
- And without global variables.
file: examples/Groon3.pm1: package Groon3; 2: use strict; 3: use warnings; 4: use Exporter::Tidy 5: default => [ qw (skaplunch) ], 6: other => [ qw (kadoonk blorf) ]; 7: 8: sub kadoonk { print "KADOONK!!\n" } 9: sub blorf { print "blorf..\n" } 10: sub skaplunch { print "SKAPlunch\n" } 11: 12: 1;