in reply to Input/Output through the Keyboard
while (<STDIN>) { chomp; if ($_ eq "quit") { exit; } print eval "$_", "\n"; } [download]