summaryrefslogtreecommitdiff
path: root/05
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-02-27 15:31:02 -0500
committerpommicket <pommicket@gmail.com>2022-02-27 15:31:02 -0500
commita08fef645e4b2504d7c2109946c90e63ca91b731 (patch)
tree0c0c8ed472f093c54dc4faef59312ed5802c4305 /05
parentb4e22170b4cbe580a1583337817f6a388c0e1f55 (diff)
cleaned up comments
Diffstat (limited to '05')
-rw-r--r--05/README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/05/README.md b/05/README.md
index 13af044..3112efb 100644
--- a/05/README.md
+++ b/05/README.md
@@ -90,7 +90,9 @@ The C89 standard (in theory) defines which C programs are legal, and exactly wha
A draft of it, which is about as good as the real thing, is [available here](http://port70.net/~nsz/c/c89/c89-draft.html).
Since 1989, more features have been added to C, and so more C standards have been published.
-To keep things simple, our compiler only supports the features from C89 (with a few exceptions).
+To keep things simple, our compiler only supports the features from C89, except
+that declarations can appear after statements and `//` single-line comments are allowed
+(both of these were added in C99).
## compiler high-level details