On Tue, Feb 28, 2017 at 3:46 PM, ToddAndMargo <[email protected]> wrote:
> On 02/28/2017 04:11 AM, yary wrote: > >> >> On Tue, Feb 28, 2017 at 12:53 AM, ToddAndMargo <[email protected] >> <mailto:[email protected]>> wrote: >> >> sub PrintRed ( $Str ) { print color('bold'), color('red'), >> "$Str", color('reset'); } >> sub PrintGreen ( $Str ) { print color('bold'), color('green'), >> "$Str", color('reset'); } >> sub PrintBlue ( $Str ) { print color('bold'), color('blue'), >> "$Str", color('reset'); } >> >> >> You don't need the double quotes around $Str- not even in Perl5! >> > > I think I am blind, but I am not finding the extra () > Doublequotes are " " not ( ). (language... bracket confusion is far too common) It's the `, "$Str",`, that can just be `, $Str,`. -- brandon s allbery kf8nh sine nomine associates [email protected] [email protected] unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net
