I have a similar problem to the this:
-module(hello).
-export([hello_world/0]).
hello_world() -> io:fwrite("hello, world\n").
Result:
(hello_world@PC)8> hello:hello_world().
** exception error: undefined function hello:hello_world/0
(hello_world@PC)9>
but the instructions
"The way to fix that:
Go to:
Run configurations
--Erlang
Select tab:
--Environment
then
--Select
check
-- Path
Apply and run."
do not solve my problem.
Is it perhaps my software, because getting hold of some of it was quite troublesome. I have Erlang 5.10.1 R16B with Erlide plug-in (version 0.9.0.201010061109) for Eclipse 4.2.2?
Any help will be appreciated!