Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / Psh / Builtins / Package.pm
CommitLineData
86530b38
AT
1package Psh::Builtins::Package;
2
3require Psh::Util;
4
5=item * C<package packagename>
6
7Switches to another perl package.
8
9=cut
10
11sub bi_package
12{
13 my $line= shift;
14 my @words= @{shift()};
15
16 $Psh::PerlEval::current_package= $words[0];
17 return (1,undef);
18}
19
201;