Skip to content

Instantly share code, notes, and snippets.

@punytan
Created May 9, 2010 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save punytan/395219 to your computer and use it in GitHub Desktop.
Save punytan/395219 to your computer and use it in GitHub Desktop.
Not a GLOB reference
(F) Perl was trying to evaluate a reference to a "typeglob" (that is, a symbol table entry that looks like *foo) but found a reference to something else instead. You can use the ref function to find out what kind of ref it really was.
typeglob
Use of a single identifier, prefixed with *. For example, *name stands for any or all of $name, @name, %name, &name, or just name. How you use it determines whether it is interpreted as all or only one of them. See "Typeglobs and Filehandles" in Chapter 2.
$fh = *STDOUT;
$fh = \*STDOUT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment