Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What libraries would be useful for implementing a small language interpreter in C?

Tags:

c

interpreter

For my own learning experience, I want to try writing an interpreter for a simple programming language in C – the main thing I think I need is a hash table library, but a general purpose collection of data structures and helper functions would be pretty helpful. What would you guys recommend?

like image 547
Jordan Danford Avatar asked Dec 17 '10 05:12

Jordan Danford


1 Answers

libbasekit - by the author of Io. You can also use libcoroutine.

like image 53
Yann Ramin Avatar answered Oct 07 '22 21:10

Yann Ramin