Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
      print("Evaluation error.\n"), next if not defined $result;
      print "Result: $result\n";
    }
    
  2. or download this
    > 3*4.2e3+5^(3.1+2)
    Entered: (3 * 4.2e3) + (5 ^ (3.1 + 2))
    ...
    > a*b+c
    Entered: (a * b) + c
    Evaluation error.