i have created an array
print "Enter a string";
@list = <STDIN>;
print @list;
when i excute this it is always in input mode even though i go to new line by pressing enter or if i try bypressing ctrl z
print "Enter a string";
@list = <STDIN>;
print @list;
when i excute this it is always in input mode even though i go to new line by pressing enter or if i try bypressing ctrl z
Comment