Hello, world!
Posted feedbacks - Erlang
erl -noshell -s helloworld hello -s init stop で実行.
1 2 3 4 5 | -module(helloworld).
-export([hello/0]).
hello() ->
io:format("Hello, World!~n").
|
Hello, world!
erl -noshell -s helloworld hello -s init stop で実行.
1 2 3 4 5 | -module(helloworld).
-export([hello/0]).
hello() ->
io:format("Hello, World!~n").
|
にしお
#3358()
Rating0/0=0.00
[ reply ]