Help for this page

Select Code to Download


  1. or download this
    $ perl -w
    use strict;
    ...
    Useless use of a constant in void context at - line 3.
    print $scalar, "\n";
    C
    
  2. or download this
    $ perl -v
    
    This is perl, v5.8.7 built for cygwin-thread-multi-64int
    (with 1 registered patch, see perl -V for more detail)
    
  3. or download this
    $ perl -w
    my $scalar = (1, 2, 3);
    Useless use of a constant in void context at - line 1.