Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Simple CLI calculator based on Perl's eval()

by afoken (Chancellor)
on Mar 03, 2021 at 18:44 UTC ( [id://11129089]=note: print w/replies, xml ) Need Help??


in reply to Simple CLI calculator based on Perl's eval()

Sometimes I need to do a quick calculation. I'm too lazy to open a GUI calculator

I'm even lazier:

>perl -E 'say sqrt(3*3+4*4)' 5 >

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

Replies are listed 'Best First'.
Re^2: Simple CLI calculator based on Perl's eval()
by parv (Parson) on Mar 03, 2021 at 22:40 UTC

    I am too lazy
    Too lazy for my perl
    Too lazy ...

    % python3 >>> from math import * >>> sqrt(9**5) 243.0

    I use Python REPL for simpler arithmetic operations; lately haven't had any need to know square root.

      I use Python REPL for simpler arithmetic operations

      The perldl shell, which is part of PDL, can be handy for the same thing:
      C:\>perldl perlDL shell v1.357 PDL comes with ABSOLUTELY NO WARRANTY. For details, see the file 'COPYING' in the PDL distribution. This is free software and you are welcome to redistribute it under certain conditions, see the same file for details. ReadLines, NiceSlice, MultiLines enabled Reading PDL/default.pdl... Found docs database C:/_64/strawberry-5.26.1-PDL/perl/vendor/lib/PDL/p +dldoc.db Type 'help' for online help Type 'demo' for online demos Loaded PDL v2.018 (supports bad values) Note: AutoLoader not enabled ('use PDL::AutoLoader' recommended) pdl> p sqrt(9**5) 243 pdl>
      And no need to explicitly import anything !

      Cheers,
      Rob

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11129089]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-24 01:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found