mirror of
https://github.com/RGBCube/serenity
synced 2025-10-28 05:02:36 +00:00
With this, we can parse a module at least as simple as the following C
code would generate:
```c
int add(int x, int y) {
if (x > y)
return x + y;
return y - x; // Haha goteeem
}
```
|
||
|---|---|---|
| .. | ||
| Parser | ||
| CMakeLists.txt | ||
| Constants.h | ||
| Opcode.h | ||
| Types.h | ||