Skip to content

Latest commit

 

History

History
82 lines (67 loc) · 3.17 KB

README.md

File metadata and controls

82 lines (67 loc) · 3.17 KB

C interpreter that interprets itself.

How to Run the Code

gcc -o minic minic.c
./minic hello.c
./minic -s hello.c

./minic minic.c hello.c
./minic minic.c minic.c hello.c

Tutorials

Courses

Books

  • List of compiler books
    • Compilers: Principles, Techniques, and Tools
    • Modern Compiler Implementation in C
    • Advanced Compiler Design and Implementation
    • Engineering: A Compiler
  • Automata Theory Book
    • Introduction to the Theory of Computation
    • Introduction to Automata Theory, Languages, and Computation
    • An Introduction to Formal Languages and Automata
  • C/C++
    • C Primer Plus
    • The C Programming Language
    • C++ Primer Plus
    • C++ Primer
    • The C++ Programming Language
    • Inside the C++ Object Model
    • Modern C++ Design
    • Effective C++ Digital Collection: 140 Ways to Improve Your Programming
  • Static Program Analysis

Projects

Tools

References