Thanks to Alain O’Dea for writing this guide.
sudo apt-get update
sudo apt-get install erlang
sudo port selfupdate
sudo port install erlang
https://erlide.org/update
into the Location field, then
click OK (dialog will close)https://erlide.org/update
and click
Install… (another dialog will appear)Without these steps things like syntax highlighting, code completion and other significant aspects of the ErlIDE UI will not work properly. The IDE will function basically, but it will not work as intended.
hello_world
in the Name fieldhello_world
in the Node name field.hello_world
in Module name fieldsay_hello
in the first box
and 0
in the second box and click Applyhello_world.erl
will
be opened)hello_world:say_hello().
ok
in say_hello with
io:format("Hello World!")
and save (Ctrl+S or Command+S)hello_world:say_hello().
"Hello World!"
in say_hello with
"Hello ErlIDE!"
) and save (Ctrl+S or Command+S)hello_world:say_hello().
"Hello ErlIDE!"
for us! We can change the code at
runtime.Did you find errors in the documentation? Do you have improvements to suggest? Suggest edits!