GithubHelp home page GithubHelp logo

arthurliao0816 / sp108b Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ccccourse/sp108b

0.0 1.0 0.0 4.46 MB

系統程式 -- 108 下學期 (陳鍾誠課程的作業)

Makefile 2.39% C 84.87% C++ 1.63% Rust 6.38% D 4.06% DTrace 0.67%

sp108b's Introduction

System Program Course -- Homework Project

Field Content
Semester Second semester of 2019
Student 廖明志
ID number 110710529
PHD 陳鍾誠
School&Department NQU CSIE
Course Homepage System Program

Table of Contents

Compiler

grammar

PROG = STMTS
BLOCK = { STMTS }
STMTS = STMT*
STMT = IF | WHILE | BLOCK | ASSIGN
WHILE = while (E) STMT
FOE = for ( E ; E ; E ) STMT
IF = if (E) STMT (else if (E) STMT else STMT)?
GOTO = goto [label name]
ASSIGN = id '=' E;
E = F (op E)*
F = (E) | Number | Id

Note

  • If "git pull" failed, "git stash" first then git pull again.
  • "#define trace printf" is a better way to modularize program if we need.
  • ".c" and ".h" files usually contain program and "define", respectively.
  • If "git push origin master" failed, "git pull" first then git push again.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.