Create fux
-module(fux).
-export([make_fun/0, version/0]).
version() -> 1.
make_fun() -> fun() -> ok end.