Skip to content

Commit 7a0cc71

Browse files
committed
wip
1 parent f384952 commit 7a0cc71

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
11
# About Math Precision Calculator
22

3+
### Installed
4+
```shell
5+
composer require ofcold/numeric-component
6+
```
7+
8+
### Example:
9+
10+
```php
11+
12+
require __DIR__.'/vendor/autoload.php';
13+
14+
$result = num(3.141592698)->add(1111)->mul(2)->div(100);
15+
16+
```
17+
18+
#### Result:
19+
```
20+
Ofcold\NumericComponent\Numeric^ {#2
21+
#dirtyValue: "22.28283185"
22+
#scale: 8
23+
}
24+
25+
```

0 commit comments

Comments
 (0)