fork(1) download
  1. -module(prog).
  2. -export([main/0]).
  3.  
  4. main() ->
  5. L = [ fun() -> X end || X <- lists:seq(0, 368) ],
  6. F = lists:nth(14, L),
  7. io:format("~p", [F()]),
  8. true.
Success #stdin #stdout 0.19s 23408KB
stdin
Standard input is empty
stdout
13