5 lines
82 B
Erlang
5 lines
82 B
Erlang
-module(test).
|
|
-export([first/1, second/0]).
|
|
|
|
first(F) -> F().
|
|
second() -> hello.
|