Stuart Rocks wrote:
>> 
>>  C<With> would also make the [variable, alias, whatever]
>> default, but not replace the $_:
>> 
>> $_ = "monkey ";
>> $foo = "coward";
>> with ($foo){
>>     print;
>>     print "$_";
>> }
>> 
>> would output "monkey coward". 

>okay, "coward" is default but $_ has not been replaced, so would not 
>the code example print "coward monkey"

>Then how would you write "I am not a coward"

with ($foo)
{
  print "I am not a";  ##What do I use here or do I have to issue a 
                       ##separate print like...
  print;
}

Ilya

Reply via email to