Skip to content

Instantly share code, notes, and snippets.

@jayliew
Created October 10, 2012 20:13
Show Gist options
  • Save jayliew/3868115 to your computer and use it in GitHub Desktop.
Save jayliew/3868115 to your computer and use it in GitHub Desktop.
Erlang list of integers to string
L = [100, 120, 100].
lists:flatten([io_lib:format("~c", [V]) || V <- L]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment