mirror of
https://github.com/valitydev/parse_trans.git
synced 2024-11-06 08:35:17 +00:00
8 lines
111 B
Erlang
8 lines
111 B
Erlang
-module(lc).
|
|
-export([f/1]).
|
|
|
|
f(X) ->
|
|
[fun(_) ->
|
|
erlang:now()
|
|
end || {Y1,Y2} <- [{1,a},{2,b}]].
|