[src]
@a=(10,102);
@b=(10,102);
print_array(a,B);
sub print_array
{
print @_;
}
[/src]
The output would be
[src]2[/src]
Printable View
[src]
@a=(10,102);
@b=(10,102);
print_array(a,B);
sub print_array
{
print @_;
}
[/src]
The output would be
[src]2[/src]