https://github.com/csvancea/cpl-hw
Compiler for: COOL (Classroom Object Oriented Language)
https://github.com/csvancea/cpl-hw
Last synced: about 2 months ago
JSON representation
Compiler for: COOL (Classroom Object Oriented Language)
- Host: GitHub
- URL: https://github.com/csvancea/cpl-hw
- Owner: csvancea
- Created: 2021-11-21T16:18:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-25T22:47:29.000Z (over 4 years ago)
- Last Synced: 2025-12-27T14:11:55.348Z (6 months ago)
- Language: Java
- Homepage:
- Size: 150 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compiler: COOL - Cosmin-Răzvan VANCEA - 343C1
- Stage 1: Lexical and Syntax analysis (parser)
- Stage 2: Semantic analysis (static code analysis)
- Stage 3: MIPS code generator
```cool
class Main inherits IO {
main() : Object {
self.out_string("Hello there!")
};
};
```