GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
MYC(1) FreeBSD General Commands Manual MYC(1)

myc - a simple calculator

myc [command]

Myc is a simple calculator capable of all operations available in C. Commands are entered in infix notation. It is possible to use parentheses. If a myc-command is specified on the command-line, the result is echoed and myc exits immediately. If invoked with no arguments, myc starts reading commands from standard-in. myc understands the following binary infix operators (from highest priority to lowest): ** (power), * (multiply), / (divide), % (modulo), + (add), - (subtract), << (shift left), >> (shift right), < (less), <= (less or equal), > (greater), >= (greater or equal), == (equal), != (not equal), & (arithmetical and), | (arithmetical or), ^ (arithmetical exclusive or), && (logical and), || (logical or), = (assign); and the following unary prefix operators: - (negate, unary minus), ! (logical not), ~ (bitwise complement). myc knows three data types: boolean, integer (32 bit), float (64 bit, equivalent to C double). On some esoteric platforms the precision of integer and float may be different. As in C the result of a division depends on the data types of the operands. An integer divided by an integer yields an integer. If you want the result to be a float, make sure one of the operands is a float, e.g. type 4/7. instead of 4/7 or a/(b+0.) instead of a/b. The power operation returns a float if the result is too large to fit in an integer. The result of a calculation is stored in the special variables $$ and $n where n is the number of the command.

Maybe. Please report bugs to demetrio@cs.uni-sb.de.

myc is not in the public domain, but freely distributable. It may be used for any non-commercial purpose. See file COPYRIGHT for details.

Sascha Demetrio
demetrio@cs.uni-sb.de

1996 February 11 Myc

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.