Skip to content

Instantly share code, notes, and snippets.

@kuenishi
Forked from frsyuki/quick start example.html
Created June 20, 2012 02:03
Show Gist options
  • Save kuenishi/2957716 to your computer and use it in GitHub Desktop.
Save kuenishi/2957716 to your computer and use it in GitHub Desktop.
Erlang
<div id="qs-erlang" class="qs">
<h4>Erlang</h4>
<ul class="hlist">
<li><a href="http://msgpack.org/edoc/">API Reference</a></li>
<li><a href="http://github.com/msgpack/msgpack-erlang">Repository</a></li>
</ul>
<p>Write into your <a href="http://github.com/basho/rebar">rebar</a>.config:</p>
<pre class="prettyprint">{deps, [
{erl_msgpack, ".*", {git, "git://github.com/msgpack/msgpack-erlang.git", "HEAD"}}
]}.
</pre>
<pre class="prettyprint"> Spam = msgpack:pack(Ham),
Ham = msgpack:unpack(Spam).
</pre>
</div>
@voluntas
Copy link

いいね

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment