diff --git a/README.md b/README.md index 6c5913f..85dffba 100644 --- a/README.md +++ b/README.md @@ -82,4 +82,8 @@ When omiting multiplication sign with functions: [tau@sigma ~]$ lax -c 'x * f(x-3)((x-2)/(x-(y^2)))' x\cdot \left(f\left(x-3\right)\right)\left(\frac{x-2}{x-\sqrt[y]{2}}\right) +A really convoluted example: + + [tau@sigma ~]$ lax -c 'x * (x-3) (f(x-3) - 2) (x ** (x-3/(x-2)))' + x\cdot \left(x-3\right)\left(f\left(x-3\right)-2\right)\left({x}^{\left(x-\frac{3}{x-2}\right)}\right) diff --git a/setup.py b/setup.py index 2b59bc1..e609434 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup setup(name="lax", - version="0.2", + version="0.3", packages=["liblax"], scripts=['lax'], author="Iury O. G. Figueiredo", @@ -27,4 +27,5 @@ +