use AtestClass;                     #import it

my $obj = AtestClass->new();     #make a new object of the class

print "We created an object\n";

$obj->getSet('one',111);	#set an attribute
$obj->getSet('two',222);	# and another one

print "using the getter for 'one' we got " . $obj->getSet('one') ."\n";
print "  and for 'two'" . $obj->getSet('two') . "\n";
exit(0);
