in reply to Re: Re: Re: Input/Output through the Keyboard
in thread Input/Output through the Keyboard

I cooked a little bit:
while (<STDIN>) { chomp; if ($_ eq "quit") { exit; } print eval "$_", "\n"; }