InterviewSolution
Saved Bookmarks
| 1. |
What are the modules? How can a module be stored? |
|
Answer» Erlang enables to put TOGETHER code into modules, which consists of functions. A module INTRODUCES LOCAL scope of functions, both PUBLIC and Private. A module is stored in a file named “.ERL.” Make sure the file basename and the name of the module are the same. |
|