From d3a0cc3a8ba6dfeb64d3faeffdeb6845b60e5840 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Sat, 20 Jan 2018 15:41:49 +0100 Subject: rearranged the dir for github - removed tools and pdfs - rearranged the projects dirs - added md files - other minor changes --- projects/11/systemsub.txt | 59 ----------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 projects/11/systemsub.txt (limited to 'projects/11/systemsub.txt') diff --git a/projects/11/systemsub.txt b/projects/11/systemsub.txt deleted file mode 100644 index cad8797..0000000 --- a/projects/11/systemsub.txt +++ /dev/null @@ -1,59 +0,0 @@ -class Math{ -function int abs(int x, int y){} -function int multiply(int x, int y){} -function int divide(int x, int y){} -function int min(int x, int y){} -function int max(int x, int y){} -function int sqrt(int x){} -} -class String{ -constructor String new(int maxLength){} -method int dispose(){} -method int length(){} -method char charAt(int j){} -method void setCharAt(int j, char c){} -method String appendChar(char c){} -method void eraseLastChar(){} -method int intValue(){} -method void setInt(int val){} -function char backSpace(){} -function char doubleQuote(){} -function char newLine(){} -} -class Array{ -function Array new(int size){} -method void dispose(){} -} -class Output{ -function void moveCursor(int i, int j){} -function void printChar(char c){} -function void printString(String s){} -function void printInt(int i){} -function void println(){} -function void backSpace(){} -} -class Screen{ -function void clearScreen(){} -function void setColor(boolean b){} -function void drawPixel(int x, int y){} -function void drawLine(int x1, int y1, int x2, int y2){} -function void drawRectangle(int x1, int y1, int x2, int y2){} -function void drawCircle(int x, int y, int r){} -} -class Keyboard{ -function char keyPressed(){} -function char readChar(){} -function String readLine(String message){} -function int readInt(String message){} -} -class Memory{ -function int peek(int address){} -function void poke(int address, int value){} -function Array alloc(int size){} -function void deAlloc(Array o){} -} -class Sys{ -function void halt(){} -function void error(int errorCode){} -function void wait(int duration){} -} -- cgit v1.2.3