-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved Roadmap to it's own file and structured it as Gleam's (#202)
- Loading branch information
Showing
2 changed files
with
65 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Concrete Roadmap | ||
|
||
Legend: | ||
- ✔️ = implemented | ||
- 🏗️ = work in progress | ||
- :x: = work not started yet | ||
- 🤔 = to be defined | ||
|
||
## In Progress | ||
Builtin Features: | ||
- generics 🏗️ | ||
- stdlib support 🏗️ | ||
|
||
Standard lib features: | ||
- arrays/vectors 🏗️ | ||
|
||
## Done | ||
Builtin Features: | ||
- if/else ✔️ | ||
- while ✔️ | ||
- modules ✔️ | ||
- imports ✔️ | ||
- floats ✔️ | ||
- borrowing ✔️ | ||
- structs ✔️ | ||
- casts ✔️ | ||
|
||
## Planned | ||
- enums :x: | ||
- match :x: | ||
- for :x: | ||
- ffi :x: | ||
- linear type checker :x: | ||
- impl block :x: | ||
- borrow checker :x: | ||
- traits :x: | ||
- unsafe :x: | ||
- iterators :x: | ||
- option :x: | ||
- box :x: | ||
- rc (for cyclical data structures like graphs) :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: | ||
- 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: | ||
|
||
## Research | ||
- capabilities 🤔 |