Help for this page

Select Code to Download


  1. or download this
    no strict;      # just for this demo
    use warnings;
    ...
    $deref: 42
    Use of uninitialized value $anon in concatenation (.) or string at ./a
    +non-scalar-ref-demo.pl line 9.
    $anon:
    
  2. or download this
    my @arr      = (1, 2, 3);
    my $ref      = \@arr;