beginnings of REPL
[muddle-interpreter.git] / doc / ROADMAP.md
1 Roughly dependency-ordered todo list:
2
3 # Minimal core language:
4 * [ ] *PROCESS/MCALL*
5 * [ ] EVAL; initial interpreter and REPL
6 * [ ] atoms, global bindings, normal FUNCTIONs
7 * [ ] *GC*
8 * [ ] local bindings
9 * [ ] control flow
10 * [ ] advanced FUNCTIONs; macros
11 *Bold*: APIs everything else is built on, impl as early as possible
12
13 # Other essential language components:
14 * [ ] atom OBLISTs, BLOCK
15 * [ ] INTERRUPTs
16 * [ ] DECLs checking
17 * [ ] PACKAGEs
18 * [ ] STRINGs
19 * [ ] checkpointing?
20 * [ ] FFI
21
22 # Bonus features:
23 * [ ] package management?
24 * [ ] COMPILE function?
25 * [ ] I/O threadpool / BLOCKED process state?
26 * [ ] DECL TEMPLATEs?
27 * [ ] optimizing AOT compiler?
28 * [ ] heapstacks?