Tagged Questions

5
votes
1answer
228 views

Spaghetti stack in C

Does anybody know where I can find an example of a Spaghetti stack written in C?
2
votes
10answers
536 views

How to implement closures without gc?

I'm designing a language. First, I want to decide what code to generate. The language will have lexical closures and prototype based inheritance similar to javascript. But I'm not a fan of gc and try …