in reply to Re: Syntax Explanation PLs
in thread Syntax Explanation Please
/me makes mental note to investigate B::Deparse sometime soon. Interestingly enough, and this is now way beyond useful.
Deparses as$foo = 'hmmm'; bar = 'why?'; print $foo.bar.me
Of course they break in different ways. do bar = 'why?' dies with a compilation error. Can't modify do "file" in scalar assignment$foo = 'grrr'; do bar = 'why?'; print $foo . 'bar' . 'me';
|
|---|