Document documentation license
[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?
29
30 # License
31
32 Copyright (C) 2018 Keziah Wesley
33
34 You can redistribute and/or modify this file under the terms of the
35 GNU Affero General Public License as published by the Free Software
36 Foundation, either version 3 of the License, or (at your option) any
37 later version.
38
39 This file is distributed in the hope that it will be useful, but
40 WITHOUT ANY WARRANTY; without even the implied warranty of
41 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
42 Affero General Public License for more details.
43
44 You should have received a copy of the GNU Affero General Public
45 License along with this file. If not, see
46 <http://www.gnu.org/licenses/>.