> Doesn't matter in this case. The rule in perl is that single quote 
> strings are not inspected for variables; whereas double quotes are. 
> E.g:
>       $a = "foo";
>       print 'Value: $a\n';
>       print "Value: $a\n";
> will output:
>       Value: $a
>       Value: foo

Actually, single quotes don't parse escaped characters, either...  You'd
get:

Value: $a\nValue: foo

-- 
Chris Petersen
Programmer / Web Designer
Silicon Mechanics:  http://www.siliconmechanics.com/
Blade Servers:      http://www.siliconmechanics.com/c292/blade-server.php
1U Servers:         http://www.siliconmechanics.com/c272/1u-server.php




-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to