Skip to content

Instantly share code, notes, and snippets.

@sushant12
Created May 17, 2020 03:46
Show Gist options
  • Save sushant12/237fd082e77d1f6edec0099e6736d4e3 to your computer and use it in GitHub Desktop.
Save sushant12/237fd082e77d1f6edec0099e6736d4e3 to your computer and use it in GitHub Desktop.
-module(list).
-export([take/2]).
take(0, _L) -> [];
take(_N, []) -> [];
take(N, [X|Xs]) when is_integer(N) andalso N > 0 ->
[X | take(N-1, Xs)].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment