-module(test1).
-export([main/1]).

main(T) -> ( fun(T) -> T * T end ) end.

main(11).