Thanks to Eli Liang for writing this guide.
Help -> Software Updates...
Add Site...
button on the right.https://erlide.org/update
Install...
button on the rightWindows -> Preferences -> Erlang -> Installed runtimes
23.3
.Installed runtimes
pane.File -> Restart
Windows -> Open Perspective -> Other... -> Erlang
. Click OK.File -> New -> Project...
Erlang -> Erlang Project
and click NextHelloWorldProject
New -> Other... -> Erlang -> Module
and click Next (can also just select “New Module” directly)hello
Run -> Run Configurations...
erlide
.erlang.cookie
file in different places, and if you get connection problems you should enter some value for the Cookie field. If the node is already running, you have to use the same cookie value; otherwise, any string will do.hello/0
(within the brackets for the export, so it reads -export([hello/0]).
hello() -> io:format("Hello World!~n", []).
File -> Save As...
src
in the dialog box. The field entitled Enter or select the parent folder: should now read HelloWorldProject/src
hello.erl
is saved in the src directory and automatically built.hello:hello().
and hit return. The output from the program will appear.File -> Close
, and then File -> Exit
.Did you find errors in the documentation? Do you have improvements to suggest? Suggest edits!