in reply to Re: Re: Input/Output through the Keyboard
in thread Input/Output through the Keyboard
Using eval is one solution:
$_ = <STDIN>; print eval;
In Section
Seekers of Perl Wisdom
in reply to Re: Re: Input/Output through the Keyboard
in thread Input/Output through the Keyboard
$_ = <STDIN>; print eval;