#!/usr/bin/perl -w
use strict;

package FunctionClass;

use Exporter 'import'; # gives us Exporter's import() method directly
our @EXPORT_OK = "f";	#it is OK for someone to ask for f()

sub f {
    print "this is the f() from the class\n";
}

1;
