Metadata-Version: 2.1
Name: PythonIota
Version: 0.0.2
Summary: PythonIota may be an imitation of iota() function in Go,C++ etc.
Author: Equinox
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

Pyota may be an imitation of iota() function in Go,C++ etc.

# Use as follows:

``````
newiota = Iota()

newiota.__parseInput__('''
    A
    B = iota
    C
    _
    D = 6*8
    E
    F = iota+100
''')

print(newiota.get_values())
print(newiota.F)
