Advertisement
Guest User

Untitled

a guest
Jan 8th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 0.18 KB | None | 0 0
  1. -module (ex1).
  2. -export ([listofnum/1]).
  3.  
  4. listofnum(N) -> lists:reverse(ex(N)).
  5. ex(0) -> [];
  6. ex(N) -> [N] ++ ex(N - 1).
  7.  
  8. %%%%
  9.  
  10. 12> ex1:listofnum(12).
  11. [1,2,3,4,5,6,7,8,9,10,11,12]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement