#!/usr/bin/perl package HelloWorld; require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(printStatement); our $VERSION = 1.00; sub printStatement { print $var; } 1;