Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        no strict 'refs';
        print "$$i\n";
    }
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    my $i = "test";
    my $test = "success";
    print eval qq{"\$$i\\n"};