InterviewSolution
Saved Bookmarks
| 1. |
Explain What Is Modules In Erlang? |
|
Answer» ERLANG enables to organize CODE into MODULES. A module CONSISTS of functions; it introduces a local scope of functions (Public and PRIVATE). Erlang enables to organize code into modules. A module consists of functions; it introduces a local scope of functions (Public and Private). |
|