- or download this
$r = 'a'..'z' ; # Case 4 -- error
- or download this
$r = (@r, @r) ;
$v = (%r, %r) ;
- or download this
use strict;
use warnings;
...
my $r1 = ( print_context(), print_context() );
# Void
# Scalar
- or download this
my $r2 = sub { ( print_context(), print_context() ) }->();
# Scalar
# Scalar
- or download this
$r = () = 1..27 ;