RosettaCodeData/Task/Higher-order-functions/Erlang/higher-order-functions-1.erl
2023-07-01 13:44:08 -04:00

5 lines
82 B
Erlang

-module(test).
-export([first/1, second/0]).
first(F) -> F().
second() -> hello.