From 4b4705132166ad65b5ab4f74bc4c61544e20adf2 Mon Sep 17 00:00:00 2001 From: samhorlbeck Date: Tue, 12 Apr 2016 14:47:16 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d9277f..12f3af3 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ func main() func main() { var i = new int(5) -- Allocate new integer - puts i^ -- Dereference the pointer + puts i! -- Dereference the pointer } -- Memory automatically freed ``` @@ -73,7 +73,7 @@ func main() | Code compilation | 32-bit code generation | Reference counting in class contexts | Nested geneerators | | Basic reference counting | Static variables | Counted variables in loops | Reference counting in generators | | Multiple file compilation | Imports and exports | | Debug information | -| Control flow (if/elif/else, for, etc) | Type system (missing unsigned numeric types) | +| Control flow (if/elif/else, for, etc) | Type system | | Optimization (with levels) | C-ABI compatibility (no passing `structs` by value) | | Functions, closures, generators | Errors and warnings | | Object orientation (classes, interfaces, views) |