|
|
|
|
|
by __jonas
750 days ago
|
|
I enjoy Elixir but this situation is quite unfortunate, there is alias, import require and use for referencing / pulling in code external to a file in some way or another, plus the possibility of calling a function from another module directly by name without an import statement using the module name – and the most annoying part of it is that none of these give an indication of which file the other module is from, which is like 50% of the utility of an import statement for me. Instead there is this pattern of naming modules based on the file path they are located in, which is not enforced. |
|