Subject: | $/ undefined? |
Distribution: Chemistry-File-MDLMol 0.10
Perl version: v5.8.4 built for i686-linux
OS: RedHat 7.3 (2.4.18-3smp)
$/ Appears to become undefined after reading a mol file.
The following code illustrates the problem:
#!/usr/local/bin/perl -w
use strict;
use Chemistry::Mol;
use Chemistry::File::MDLMol;
print "A$/B\n";
my $mol = Chemistry::Mol->read("test.mol");
print "A$/B\n";
Which gives the following output:
A
B
Use of uninitialized value in concatenation (.) or string at ./test.txt line 10.
AB