文件名.erl必须与module名相同。

-module(tut).
-export([double/1]).

double(X) ->
    2 * X.