summaryrefslogtreecommitdiff
path: root/parser/README.md
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2023-11-10 22:08:46 +0100
committerMarc Vertes <mvertes@free.fr>2023-11-10 22:08:46 +0100
commitbec71a19e7d7cd0847d1cfa6ef2110d7301fcdd1 (patch)
tree7d977e9ad86c119603db88d3fdbf689a845ff8e5 /parser/README.md
parent5220ccb741c7f3688731d3b3df6e5e851f50f5c5 (diff)
parser: implement support for var declarations
The full Go syntax is supported, blocks or line, mutiple comma separated variables, assignments. In local and global frame.
Diffstat (limited to 'parser/README.md')
-rw-r--r--parser/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser/README.md b/parser/README.md
index 0503e28..ecb7c41 100644
--- a/parser/README.md
+++ b/parser/README.md
@@ -51,7 +51,7 @@ Go language support:
- [ ] channel operations
- [x] var defined by assign :=
- [x] var assign =
-- [ ] var declaration
+- [x] var declaration
- [ ] type declaration
- [x] func declaration
- [ ] const declaration