2 lines
67 B
Text
2 lines
67 B
Text
|
|
Stream.unfold({0,1}, fn {a,b} -> {a,{b,a+b}} end) |> Enum.take(10)
|