项目作者: rin2401

项目描述 :
Micro C Language
高级语言: Scala
项目地址: git://github.com/rin2401/mc.git
创建时间: 2017-11-15T03:07:13Z
项目社区:https://github.com/rin2401/mc

开源协议:

下载


Micro C Language - PPL Assignment

Document

  • Implement details in MC.pdf

Install

  • Java:
    ```
    sudo apt install default-jdk
  • Sbt:
    1. curl -L http://dl.bintray.com/sbt/debian/sbt-1.2.6.deb
    2. sudo dpkg -i sbt-1.2.6.deb
    3. ## Run
    4. - Access to sbt
    sbt
    • Compile
      ```
      compile
    • Test
      • All test
        ```
        test
      • Each test
        ```
        testOnly LexerSuite
        testOnly ParserSuite
        testOnly AstSuite
        testOnly CheckerSuite
        testOnly CodeGenSuite