Can I disable printing lists of small integers as strings in Erlang shell?
The Erlang shell "guesses" whether a given list is a printable string and prints it that way for convenience. Can this "convenience" be disabled? ...
The Erlang shell "guesses" whether a given list is a printable string and prints it that way for convenience. Can this "convenience" be disabled? ...
In the Erlang interactive shell you can bind variables to values. If I would like to clear everything and start from scratch without exiting the session and starting a new one, how do I do that? And if I just wanted to re-use a single variable, is it possible to re-bind? ...
I have an Erlang application that is deployed on a server with Windows Server 2008. The way I do this: Copy application folder in Erlang lib directory. Open command line (cmd). Execute erl. Execute application:start(app_name) in Erlang shell. Are there any better approaches to launch the application? How to make the application to l...