about summary refs log blame commit diff
path: root/users/wpcarro/scratch/simple-select/main.py
blob: 6a86324ef73f23d8b32741fbd3d7be67f75169ab (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                           
from scanner import Scanner

def tokenize(x):
  s = Scanner(x)
  return None

def main():
  while True:
    x = input("> ")
    print(tokenize(x))

if __name__ == "__main__":
  main()