in reply to Re: output record seperator!
in thread output record seperator!

actually, $\ is set to undef by default. perhaps vnpandey's code is using a module that sets $\ before it is printed.

i ran the following on my system and it showed me that $\ hadn't yet been set:

perl -e "print '$\ undefined', $/ unless defined $\;"

outputs (for me):

$\ undefined