(println (take 25(map (fn [x] (* x x)) (range))))
0..24 |> Enum.map(fn x -> x * x end) |> Enum.each(fn x -> IO.puts(x) end)