Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 718 Bytes

File metadata and controls

22 lines (15 loc) · 718 Bytes

about interpreter and Compilers

sspy.py - A tiny Scheme interpreter with Python

notes on tiny-compiler

  • regular expressions
    regulare expressions by definition are limited to the operations of star, concatenation, and union.

  • context-free grammars
    from its start symbol, all the terminal strings can be defined using a context-free grammar

  • parser
    TODO

reference