Erlang: module attribute
erlang, module
Solution
This defines a parameterised erlang module - one you can "instantiate" with new and then access the parameters passed by that new when executing code in your module.
A very brief overview is here:
http://myotherpants.com/2009/04/parameterized-modules-in-erlang/
Problem
I am new to Erlang. Found the following -module attribute declaration in an existing Erlang project: ``` -module(mod_name, [Name, Path, Version]). ``` What does mean the second parameter (list [Name, Path, Version]) here? I haven't found any information in the Erlang reference on it.