aardvark has asked for the wisdom of the Perl Monks concerning the following question:
It looks like a literal token. Programming Perl v.3 says, "You should consider any identifier that both begins and ends with a double underscore to be reserved for special syntactic use by Perl." (page 68)my $iw_user = __VALUE__('iw_user','html');
When I put that line in a seperate script I get the error:
"Undefined subroutine &main::__VALUE__ called ..."
There is other whackiness in this script, things like __TAG__ and __INSERT__
BTW - This is all going on inside a Perl script written for Interwoven. They seem to be subroutines, but why would anybody use literal tokens for subroutine names?. Is it even possible for people to add custom literal tokens to Perl?
Get Strong Together!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Literal Token __VALUE__
by jeroenes (Priest) on Mar 16, 2001 at 21:32 UTC |