Hi Lads,
I am simply trying to get a longer unquoted string into a variable. S.th. like this which doesn't work (I tried to force the idea from: print <<"EOF"< which doesnt quite do what I want).
$x=readstring();
sub readstring
{
$x <<"EOF";
here is my unquoted
multiline string
EOF
return $x;
}