From c158751554975fad6d3e78b2ef1d118c18540524 Mon Sep 17 00:00:00 2001 From: Trevor Maze Date: Wed, 11 Feb 2026 12:02:04 -0500 Subject: [PATCH] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e7e906c..807c0b1 100644 --- a/README.md +++ b/README.md @@ -27,5 +27,5 @@ 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. * __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. +* __Variables__: Local, integer variables are supported, and can be declared (optionally initialized) and assigned to.