read: implement basic decimal FIXes
[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 * [ ] unit test script prerequisites (assertions, type introspection...)
8 * [ ] *GC*
9 * [ ] local bindings
10 * [ ] control flow
11 * [ ] advanced FUNCTIONs; macros
12 *Bold*: APIs everything else is built on, impl as early as possible
13
14 # Other essential language components:
15 * [ ] atom OBLISTs, BLOCK
16 * [ ] INTERRUPTs
17 * [ ] DECLs checking
18 * [ ] PACKAGEs
19 * [ ] STRINGs
20 * [ ] checkpointing?
21 * [ ] FFI
22
23 # Bonus features:
24 * [ ] package management?
25 * [ ] COMPILE function?
26 * [ ] I/O threadpool / BLOCKED process state?
27 * [ ] DECL TEMPLATEs?
28 * [ ] optimizing AOT compiler?
29 * [ ] heapstacks?
30
31 # License
32
33 Copyright (C) 2018 Keziah Wesley
34
35 You can redistribute and/or modify this file under the terms of the
36 GNU Affero General Public License as published by the Free Software
37 Foundation, either version 3 of the License, or (at your option) any
38 later version.
39
40 This file is distributed in the hope that it will be useful, but
41 WITHOUT ANY WARRANTY; without even the implied warranty of
42 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
43 Affero General Public License for more details.
44
45 You should have received a copy of the GNU Affero General Public
46 License along with this file. If not, see
47 <http://www.gnu.org/licenses/>.