Guest User

Untitled

a guest
Mar 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. X = "1_2_3_4",
  2.  
  3. <<"1_2_3_4">>
  4.  
  5. convert(L) ->
  6. convert(L, <<>>).
  7. convert([], Bin) ->
  8. Bin;
  9. convert([H|T], Bin) ->
  10. convert(T, <<Bin/binary, H>>).
Add Comment
Please, Sign In to add comment