【发布时间】:2011-09-29 01:28:34
【问题描述】:
我不明白为什么这不起作用:
-module(hello).
-export([hello_world/0]).
hello_world() -> io:fwrite("hello, world\n").
(hello_world@PC)8> hello:hello_world().
** exception error: undefined function hello:hello_world/0
(hello_world@PC)9>
【问题讨论】:
标签: erlang