Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Using a trick by [id://fglock], and with the help of the guys at #perl.br (at freenode.org), here is the #perl.br calc, which I now use in place of bc...

Obviously, you'll see it's just a Perl Shell that have some calculator shortcuts, so, you can do whatever you want with it...

#!/usr/bin/perl use strict; use warnings; use Term::ReadLine; my $name = '#perl.br calc'; print $name.$/; my $term = Term::ReadLine->new($name); $term->Features()->{'autohistory'} = 1; my $prompt = "> "; my $OUT = $term->OUT || \*STDOUT; my $___eval_str___; my $M = 0; my $scale = 2; sub ler { my $a = $term->readline($prompt); unless (defined $a) { print $/; exit(0); } return $a; } sub substituir { my $a = shift; $a =~ s/^(.+)(\*\*)$/\$M $2 $1/; $a =~ s/^(.+)(\+|\-|\*|\/)$/\$M $2 $1/; $a =~ s/\;\s*$//; if ($a =~ /^\s*do {\s*$/) { my $block = ''; my $count = 1; while (defined($_=$term->readline(' '.('.'x$count).' ' +))) { while ($_ =~ m/\{/g) { $count++; } while ($_ =~ m/\}/g) { $count--; } last if $count < 1; $block .= $_; } $a = 'do {'.$block.'}'; } return $a; } sub falar { my $a = shift; if ($@) { print "! ".$@; } else { if (defined $a && $a =~ /^[\d\.]$/) { $M=sprintf("%.".$scale."f",$a); } elsif ($a) { $M=$a; } print $OUT "= ".$M.$/ if defined $M; } } sub doit { $___eval_str___ = ' eval(" falar(".substituir(ler())."); $___eval_str___; "); if($@){ print "! ".$@; eval($___eval_str___) } '; eval $___eval_str___; } doit();
daniel

In reply to #perl.br calc - A Perl Shell by ruoso

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-20 08:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found