Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    
    ...
    m/$mystrings[99]/;      # This compiles fine.
    "$mystrings[100]";      # This compiles fine.
    m/$mystrings[100]/;     # This does not.
    
  2. or download this
    Global symbol "$mystrings" requires explicit package
    name at ./maketest.pl line 9.
    Execution of ./maketest.pl aborted due to compilation
    errors.