bharath/git-from-scratch

There is no license information available for the latest version (dev-main) of this package.

dev-main 2022-01-24 14:07 UTC

This package is auto-updated.

Last update: 2025-06-24 21:39:33 UTC


README

By Got Your Backs

Usage

php index.php <operation> <param1> <param2> <param2> ...

Exponential

To get the exponent value for a number,

Syntax: `php index.php exponent number number`
Example `php index.php exponent 2 3`
The above example will print `8`

Divide

To get the Division value for two numbers,

Syntax: `php index.php Divide number number`
Example `php index.php Divide 8 2`
The above example will print `4`

Multiply

To get the Multiplication value for two numbers,

Syntax: `php index.php Multiply number number`
Example `php index.php Multiply 8 2`
The above example will print `16`