The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Psh::Builtins::Package;

require Psh::Util;

=item * C<package packagename>

Switches to another perl package.

=cut

sub bi_package
{
	my $line= shift;
	my @words= @{shift()};

	$Psh::PerlEval::current_package= $words[0];
	return (1,undef);
}

1;