Skip to content

Commit 3e29872

Browse files
Update README.md
1 parent 0d103f5 commit 3e29872

1 file changed

Lines changed: 64 additions & 18 deletions

File tree

README.md

Lines changed: 64 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,29 +65,75 @@ After cloning, make sure your PATH includes the necessary tool directories.
6565
## **File Structure**
6666

6767
```
68-
Cookie-Compiler/
69-
├── filename.cook
70-
├── lexer.l
71-
├── parser.y
72-
├── ast.h
73-
├── ast.c
74-
├── runtime.c
75-
├── codegen.cpp
76-
├── Dockerfile
77-
└── cookie_extension/ // VS Code extension folder
78-
├── package.json
79-
├── tsconfig.json
80-
├── language-configuration.json
81-
├── syntaxes/
82-
│ └── langli.tmLanguage.json
83-
├── src/
84-
│ └── extension.ts
85-
└── out/ (generated after compilation)
68+
Goofy_complier/
69+
├── web_cookie_compiler/
70+
│ ├── public/
71+
│ ├── src/
72+
│ ├── server.go
73+
│ ├── index.html
74+
│ ├── package.json
75+
│ ├── package-lock.json
76+
│ └── setup_wasm.sh
77+
├── Main_FrontendAndBackend/
78+
│ ├── lang.cook
79+
│ ├── parser.y
80+
│ ├── runtime.c
81+
│ ├── lexer.l
82+
│ ├── codegen.cpp
83+
│ ├── ast.c
84+
│ ├── ast.h
85+
│ └── cookie.cook
86+
├── cookie_extension/
87+
│ ├── package.json
88+
│ ├── package-lock.json
89+
│ ├── tsconfig.json
90+
│ ├── language-configuration.json
91+
│ ├── syntaxes/
92+
│ │ └── cookie.tmLanguage.json
93+
│ ├── src/
94+
│ │ └── extension.ts
95+
│ ├── out/
96+
│ └── snippets/
97+
├── Cookie_playground_tunnel/
98+
│ ├── README.md
99+
│ ├── cookie.cook
100+
│ ├── tunnel.go
101+
│ └── index.html
102+
├── MakeYourCookie_Tutorial/
103+
│ ├── command.txt
104+
│ ├── test.cook
105+
│ ├── lexer.l
106+
│ ├── cookie.cook/
107+
│ ├── codegen.cpp
108+
│ ├── build.sh
109+
│ ├── parser.y
110+
│ ├── runtime.c
111+
│ ├── ast.c
112+
│ └── ast.h
113+
├── docs/
114+
│ └── index.html
115+
├── configAndCommand/
116+
│ ├── mac-build.txt
117+
│ ├── Docker-Command.txt
118+
│ ├── Dockerfile
119+
│ ├── makefile
120+
│ └── win-build.txt
121+
├── automation/
122+
│ ├── codebase_backup/
123+
│ └── cookie
124+
├── README.md
125+
├── LICENSE
126+
└── .gitignore
86127
```
87128

88129

89130
## **Build Instructions**
90131

132+
```
133+
cd into Main_FrontendAndBackend
134+
```
135+
136+
91137
### **For Mac & Linux**
92138

93139
1. **Build the Runtime Library:**

0 commit comments

Comments
 (0)