This is my favorite poem (or the last 2 lines of it), not sure if my syntax is correct actually.
if(!$you) {foreach(@toys) $$_-> break();}

Janitored by Arunbear - added code tags, as per Monastery guidelines

Replies are listed 'Best First'.
Re: Frederick Nims - Love Poem
by TedPride (Priest) on Nov 08, 2004 at 07:42 UTC
    I don't know what that's supposed to do, but you have syntax errors. The proper syntax is:
    if (!$you) {foreach(@toys) {$$_-> break();}} if (!$you) {$$_-> break() foreach(@toys);}
    Though I'd make it prettier:
    if (!$you) { $$_-> break() for @toys; }