-
Notifications
You must be signed in to change notification settings - Fork 11
/
README
47 lines (34 loc) · 805 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Cesium v 0.3:
=============
Dependencies:
-------------
* Boehm-Demers-Weiser Garbage Collection
Build:
------
Update directory paths at the top of the Makefile then type:
make
To run, simply type:
./cesium
Introduction:
-------------
Cesium is a language with the following features:
* LLVMJit backend for performance
* Local type inference
* C foreign function interface
* Syntax and expression macros
* Garbage collection
* Imperative and functional styles
* Parameterised types
* Ad hoc and parametric polymorphism
Progress:
---------
* Parser combinators - almost done
* Symbol Hash table - not done
* Parser - not done
* Environments - not done
* Type system - not done
* Back end - not done
* Closures - not done
* Type inference - not done
* FFI - not done
* Module system - not done