Fun blog series exploring porting SBCL to RISC-V: https://christophe.rhodes.io/notes/blog/posts/2018/a_trace_of_riscv_success/
Related Posts
Zig shipped a RISC-V backend before AArch64!
I think RISC-V is doing really well in the technology enthusiast community.
https://news.ycombinator.com/item?id=44222212
Exploring design ideas using AI as a learning assistant, for creative exploration: https://andymatuschak.org/hmwl/
I'm having fun writing a simple type checker, but I'm learning firsthand why syntax-directed checking doesn't work. It prevents inference.
My checker catches real bugs, but it can't handle cases like this:
[1, 2].map(fun(x) { x + 1; })
I think I need bidirectional checking.