Skip to content

Commit 05c32e7

Browse files
committed
Should work on the readme file...
1 parent bd8cdb7 commit 05c32e7

File tree

2 files changed

+44
-32
lines changed

2 files changed

+44
-32
lines changed

.idea/workspace.xml

+40-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
PI - javascript math in your hands
22
=============
33

4-
PI is a script designed to create and generate mathematical exercises.
5-
Each class has a tex output, designed to be used in any LaTeX document.
4+
PiMath is a script designed to create and generate mathematical exercises.
65

7-
Fraction will create... fraction !
86

97
```
10-
let A = new Pi.Fraction('2/3');
8+
let A = new PiMath.Fraction('2/3');
119
console.log(A.tex) // -> \frac{ 2 }{ 3 }
1210
1311
// Add another fraction
14-
let B = new Pi.Fraction('2/5');
12+
let B = new PiMath.Fraction('2/5');
1513
A.add(B);
1614
console.log(A.frac) // -> \frac{ 16 }{ 15 }
17-
```
18-
New version today
15+
```

0 commit comments

Comments
 (0)