in reply to backslashes sometimes unnecessary
in thread Single Quotes - how to avoid any escape processing?

IIRC all the old DOS APIs accepted "/" as path delimiters, it was just command.com itself that did not.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^2: backslashes sometimes unnecessary
by LanX (Saint) on Jan 31, 2013 at 22:13 UTC