Main.cpp
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. #include <iostream>
  2. #include "TinyCLexer.hpp"
  3. #include "TinyCParser.hpp"
  4. int main()
  5. {
  6. try {
  7. TinyCLexer lexer(std::cin);
  8. TinyCParser parser(lexer);
  9. parser.program();
  10. } catch(std::exception& e) {
  11. std::cerr << "exception: " << e.what() << std::endl;
  12. }
  13. return 0;
  14. }