divya/git-from-scratch

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

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

This package is auto-updated.

Last update: 2025-07-05 15:01:25 UTC


README

By Got Your Backs

Usage

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

Exponent

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`

Addittion

To get addition of two numbers

syntax: `php index.php Add number number`
Example `php index.php Add 4 5`
The above example will print `9`

Subtraction

To get Subtraction of two numbers

syntax: `php index.php Subtraction number number`
Example `php index.php Add 10 9`
The above example will print `1`