Larry Wall writes:
> : > {$foo[$bar]}
> : > {$foo}[$bar]
> :
> : That last example seems to violate the previous stipulation about
> : not following a closure by dereferencers.
>
> That's the point--it isn't a dereferencer. It's literal brackets.
Ah, yes. Sorry -- my mind was determined to read Perl code even where
it wasn't!
PS: For anybody else looking at these documents in 'Vim' and who wants
the XXX bits to stand out, simply create a file with this name:
~/.vim/after/syntax/pod.vim
containing these lines:
syntax keyword podTodo TODO XXX
highlight link podTodo Todo
Then the next time you open a pod file the XXX will be highlighted like
it is in Perl comments.
Smylers