Skip to content

Instantly share code, notes, and snippets.

@yehohanan7
yehohanan7 / gist:11133843
Last active August 29, 2015 14:00
bencoding decoder in Elixir
defmodule BEncoding do
def decode(data) do
decode_data(data)
end
def decode_data([?l | rest]) do
decode_list(rest, [])
end