|
1 month ago | |
---|---|---|
src | 1 month ago | |
tests | 1 month ago | |
.gitignore | 10 months ago | |
.gitlab-ci.yml | 2 months ago | |
LICENSE | 9 months ago | |
README.md | 9 months ago | |
build.hs | 1 month ago | |
design.org | 1 month ago | |
todo.org | 1 month ago |
Hi! I'm streaming work on this project on Twitch! The entire series of videos can be viewed on Youtube as well.
BIP (name pending) is stack-based bytecode interpreter (/virtual machine) for statically typed functional languages written in C.
I hope to stick with this project for long enough to get to implement closures, garbage collection, exceptions and concurrency. I'll be taking cues from OCaml and Chicken Scheme as well as other resources, combined with some experimentation.
You will need to install Stack and Zig.
Build using ./build.hs
. Stack will download GHC (A Haskell compiler) and several packages the first time you run this so this might take some time.
After that:
./build.hs test
- To run tests./build.hs run
- To interpret and run the file a.bin
./build.hs valgrind
- To interpret and run the file a.bin
using valgrind./build.hs clean
- To cleanI'm using this project to brush up on my C, learn more about runtime systems, and potentially use this as a backend to my WIP functional language. I'm not entirely sure what I'm doing, but I'll figure it out!
Check out the todo.org file for the current status. Note that this project is built incrementally and in short sessions. Sometimes I'll revise my design decisions, refactor my work, and change the priority of some tasks. It's all part of the plan!
Want to learn more about similar topics? Take a look at this list of resources.