15 lines
335 B
Python
15 lines
335 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
from .expression import Expression
|
|
from .polynom import Polynom
|
|
from .fraction import Fraction
|
|
from .random_expression import random_str
|
|
from .render import txt,tex
|
|
|
|
|
|
# -----------------------------
|
|
# Reglages pour 'vim'
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
# cursor: 16 del
|