Hi Everyone
I just installed strawberry, perl version 5.14.3.
With this version, I have not been able to obtain input using '<>'.
The script was working fine with an active perl version. Please let me know why it will not work with strawberry perl 5.14.3 install. Thank you in advance.
I will write the script here:
#!/usr/bin/perl -w
use strict;
my $input='';
my @raw=();
my $first='';
while(defined ($input=<>)){
chomp($input);
@raw=$input;
}
print "@raw\n";