From 2de404236b7ade931770ad41f872f8b993a50ed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Garay?= Date: Wed, 24 Jan 2024 16:35:55 -0300 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4fca686..158a817 100644 --- a/README.md +++ b/README.md @@ -201,13 +201,18 @@ Meaning: Features: - if/else ✔️ - while ✔️ -- option ✔️ - modules ✔️ - imports ✔️ - floats 🏗️ - structs 🏗️ +- arrays :x: +- iterators :x: +- for :x: - borrowing 🏗️ +- match :x: +- option :x: - enums :x: +- impl :x: - linear type checker :x: - borrow checker :x: - generics :x: @@ -216,17 +221,20 @@ Features: - box :x: - rc (for cyclical data structures like graphs) :x: - ffi :x: +- operating system threads with move only semantics :x: +- rayon-like :x: + +Post-runtime features: - runtime with preemptive green threads :x: - erlang like profiling :x: - erlang like tracing :x: - erlang like observer :x: - standard library :x: -- gleam otp like library patterns :x: + - gleam otp like library patterns :x: - http server :x: - json :x: - sql server :x: - serde replacement :x: - rustler like binding generator to call rust code :x: - embeddable concrete (no allocator, first-class support for no standard library, etc) :x: -- operating system threads with move only semantics :x: - capabilities 🤔