Thu Oct 09 11:56:39 2008amylinari [...] swiftweb.com - Ticket created
Subject:
PRINT function
The PRINT function should be:
sub PRINT {
print $_ @_[1..$#_] for @{ $_[0] };
}
The change is the @_[1..$#_] in place of $_[1] to properly handle
multiple args to print.