in reply to Re: Perl templates for Emacs?
in thread Perl templates for Emacs?
the bare array needs instead to be expressed in list mode by encasing it in round bracketsWhy should it??
prints "Darth Vader", as expected.use strict; use warnings; foo ("Darth", "Vader"); sub foo { my ($bar,$baz) = @_; print "$bar $baz"; }
|
|---|