package Friendly::Hint; use base 'Exporter'; use Carp qw(croak); our @EXPORT = qw(null); sub null { croak("ERROR: Java programmer detected."); } 1;