A LISP-like language with type inference, so users will be able to utilize the power of a LISP language combined with a form of “type checking”. We believe that type inference provides the best of both dynamically typed and statically typed languages: in that programs benefit from type checking, while at the same time not needing type annotations and being naturally generic, which can only be done in more conventional languages like Java and C++ through the use of templates.
.
├── docs/ # Final Report + Documentation
├── tests/ # Test cases containing .tisp and .log files
├── bdwgc/ # Boehm garbage collector
└── ...
System packages:
- llvm-dev >= 9.0
- cmake >= 3.10
OCaml packages from opam:
- llvm
- ocamlbuild
Boehm GC (optional, will not have GC if skipped):
# Make sure GNU Autotools are installed before compiling
cd ti-lisp # cd to the project root
git clone https://github.com/ivmai/bdwgc
cd bdwgc
./autogen.sh
./configure
make -j 4
- Build the compiler:
make tilisp.native
- Run the testcases:
make test