in reply to Re^2: disable functions if module not installedin thread disable functions if module not installed
Read up on eval in [perlfunc].
Short answer:
Block
eval { die "You commie!" }; [download]
String
my $death = 'die'; eval "$death \"You commie!\";" [download]