documentate what we can do with core

This commit is contained in:
Bertrand Benjamin 2018-09-17 16:27:08 +02:00
parent 95739099c7
commit b1241e0844
1 changed files with 24 additions and 1 deletions

View File

@ -6,10 +6,33 @@
#
# Distributed under terms of the MIT license.
"""
r"""
Abstracts tools for calculs manipulations
:example:
>>> t = Tree.from_str("2+3*4")
>>> print(t)
+
> 2
> *
| > 3
| > 4
>>> print(t.apply_on_last_level(compute))
+
> 2
> 12
>>> tree2txt(t)
'2 + 3 * 4'
>>> tree2tex(t)
'2 + 3 \\times 4'
"""
from .tree import Tree
from .compute import compute
from .renders import tree2txt, tree2tex
# -----------------------------
# Reglages pour 'vim'