Erlang: How to include libraries
I'm writing a simple Erlang program that requests an URL and parses the response as JSON. To do that, I need to use a Library called Jiffy. I downloaded and compiled it, and now i have a .beam file along with a .app file. My question is: How do I use it? How do I include this library in my program?. I cannot understand why I can't find an answer on the web for something that must be very crucial. Erlang has an include syntax, but receives a .hrl file. Thanks! You don't need to include the file in your project. In Erlang, it is at run time that the code will try to find any function. So the