From 00b3d0658a14ac8813cb4a0ee3094935180c0aef Mon Sep 17 00:00:00 2001
From: Trevor Maze
Date: Mon, 2 Feb 2026 18:01:55 +0000
Subject: [PATCH] Update README.md
---
README.md | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index fe28eb0..e7e906c 100644
--- a/README.md
+++ b/README.md
@@ -7,28 +7,22 @@
An x86 C compiler written in Swift.
-
- Line 2 is better than anything you've ever seen.
-
- rochesterx.dev
-
----
-## Overview
-Have you ever woken up one day and said to yourself, "Man, I'd really like to build a compiler today."?
+# Overview
+Have you ever woken up one day and said to yourself, "Y'know what? I'd really like to build a compiler today."?
Could be just me.
Well, ever since that fateful day, I've been chiseling away at this mammoth task, adding functionality in stages by following [this series](https://norasandler.com/2017/11/29/Write-a-Compiler.html).
+# Features
> [!NOTE]
> This project is under active development, and the implemented features are rapidly changing.
-## Features
Here is a list of the currently implemented C language features:
* __Unary Operators__: The ~ (bitwise compliment), - (negation), and ! (logical negation) operators are implemented for integers, and can be applied to any term.
* __Arithmetic Operators__: The + (addition), - (subtraction), * (multiplication), and / (division) operators are implemented for integers, parsed according to their precedence levels in C.