14 November 2006

erlang: Using namespaces and packages in Erlang

It's possible to use separate namespaces for different applications in erlang,
thus converting modules from app_module1, app_module2 and etc to
app.module1, app.module2 names. Modules in package can call each other by using shorter name, i.e. module1:func() and module2:func1().


For complete article see:
http://www.erlang.se/publications/packages.html

No comments: