package TraceCode;
use TraceCode qw(:DEFAULT);

use vars qw (@ISA @EXPORT);
require Exporter; 
push(@ISA, qw(Exporter));

@EXPORT = qw(yyy);

sub yyy:traceCode() { 
    print "yyy\n";
}



1;
