aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2019-01-13 17:05:00 +0100
committerAyke van Laethem <[email protected]>2019-01-21 22:09:37 +0100
commit2e4dd09bbccf5dd8d3908b98887bbd2320346a85 (patch)
tree00eb010c13b1da80021dbeb3f94bdaf517c4cf9f /README.md
parent602c2647490fc2352ff283da59a6b537c8e8cacc (diff)
downloadtinygo-2e4dd09bbccf5dd8d3908b98887bbd2320346a85.tar.gz
tinygo-2e4dd09bbccf5dd8d3908b98887bbd2320346a85.zip
compiler: add support for channel operations
Support for channels is not complete. The following pieces are missing: * Channels with values bigger than int. An int in TinyGo can always contain at least a pointer, so pointers are okay to send. * Buffered channels. * The select statement.
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index e3d7016ec..447f6a335 100644
--- a/README.md
+++ b/README.md
@@ -56,13 +56,14 @@ Currently supported features:
* closures
* bound methods
* complex numbers (except for arithmetic)
+ * channels (with some limitations)
Not yet supported:
+ * select
* complex arithmetic
* garbage collection
* recover
- * channels
* introspection (if it ever gets implemented)
* ...