2007-05-02 コメント Erlang コメントは%で始まる %% foo module -module(foo). -export([fac/1]). fac(0) -> 1; % case of 0 fac(X) -> X * fac(X - 1).