symbolic references <-> no strict refs
[email protected] (allan) Sun, 17 Mar 2002 17:36:03 +0800
| Newsgroups | perl.macperl.anyperl |
|---|---|
| Message-ID | <[email protected]> |
hi can someone please explain why the below script doesn't work on v5.6.0/mac osX? it _will_ work if i outcomment "use strict"; thanks ../allan #!perl use strict; no strict 'refs'; my $test = "variable_name"; $$test = "a string"; print $variable_name; __END__