update: added python version of the tokenizer
This commit is contained in:
parent
40a84e8248
commit
06c2d19097
6 changed files with 339 additions and 0 deletions
9
parser/token.py/app.py
Normal file
9
parser/token.py/app.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import make_token
|
||||
import prettier
|
||||
|
||||
s = input("> ")
|
||||
print(s);
|
||||
first = make_token.me_tokenize(s)
|
||||
pass1 = prettier.pass1(first)
|
||||
|
||||
prettier.print_tokenlist(pass1)
|
||||
Loading…
Add table
Add a link
Reference in a new issue