From 53b0e58407a79a50bb8fc01eaa2bbc9111ccff20 Mon Sep 17 00:00:00 2001 From: Trevor Maze Date: Sun, 1 Feb 2026 11:52:48 -0500 Subject: [PATCH] README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ee80fd6..c573dfd 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ Well, ever since that fateful day, I've been chiseling away at this mammoth task ## Features This project is under active development, but here is a list of the currently implemented C language features: -* __Unary Operators__: The ~ (bitwise compliment), - (negation), and ! (logical negation) are implemented for integers, and can be applied to any term. -* __Arithmetic Operators__: The + (addition), - (subtraction), * (multiplication), and / (division) are implemented for integers, parsed according to their precedence levels in C. +* __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. * __Functions__: Each file currently supports exactly one function (so you'd be wise to make it "main"), with exactly one statement: an integer return statement. So yeah, not so useful yet. * __Variables__: To be implemented soon.