%PDF- %PDF-
| Direktori : /proc/thread-self/root/usr/share/doc/perl-Expect/examples/ |
| Current File : //proc/thread-self/root/usr/share/doc/perl-Expect/examples/calc.pl |
use strict;
use warnings;
while (my $row = <>) {
chomp $row;
print "Input: '$row' = ";
my $res = eval $row;
print "'$res' :Output\n";
}