when reading in a file, how come if I $/='', the file is read in by paragraphs?
I mean, a paragraph is essentially two contiguous newlines, not merely *nothing*, which is what $/='' sets the input record separator to.
I would have thought $/='\x0A\x0A' would read the file in by paragraphs.