I’d like to do things like L=lists, X=very_long_module_name. There’s some modules I use a lot and I’d rather type X:function() than very_long_module_name:function(). The .erlang file seems to be able to run commands but it doesn’t keep any variable assignments. For all know you can only use .erlang to add more things to path.
I’d like to do things like L=lists, X=very_long_module_name. There’s some modules I use a
Share
maybe you could use macros? i.e. -DL=lists and then ?L:function() ?