aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nivis-python/__init__.py
blob: b3e08dffeb78fc1569cf34ea80bbf37cbbf4ae94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
"""Psi
@TODO 词法分析器
@BODY 似乎要写的还蛮多的,所以先写几个TODO List
"""

__all__ = ['psi', 'Exception', 'interpreter', 'lexer', 'Parser']

from .psi import psi
from .execution import Execution
from .interpreter import Interpreter
from .lexer import Lexer
from .parsers import Parser