Skip to content

Commit

Permalink
Merge pull request #2 from mumez/master
Browse files Browse the repository at this point in the history
Added Smalltalk section to index.html
  • Loading branch information
frsyuki committed Jun 22, 2012
2 parents a86d397 + 75bc4fd commit a5de101
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions index.html
Expand Up @@ -116,6 +116,7 @@ <h3 id="crosslang">Implementation projects</h3>
<li><a onclick="changeQuickStart('qs-haskell',this)">Haskell</a></li>
<li><a onclick="changeQuickStart('qs-erlang',this)">Erlang</a></li>
<li><a onclick="changeQuickStart('qs-ocaml',this)">OCaml</a></li>
<li><a onclick="changeQuickStart('qs-smalltalk',this)">Smalltalk</a></li>
<li><a onclick="changeQuickStart('qs-go',this)">Go</a></li>
</ul>

Expand Down Expand Up @@ -325,10 +326,24 @@ <h4>OCaml</h4>
<a href="https://github.com/msgpack/msgpack/tree/master/ocaml/proof">This library is mathematically proven!</a>
</div>

<div id="qs-smalltalk" class="qs">
<h4>Smalltalk</h4>
<ul class="hlist">
<li><a href="http://code.google.com/p/messagepack-st/">Google Code</a></li>
</ul>
<pre class="prettyprint">
map := Dictionary new.
map at: 'someArray' asByteArray put: #(1 2.2 #[3 4 5]).
packed := map messagePacked.
(Object fromMessagePack: packed) inspect.
</pre>
</div>

<div id="qs-go" class="qs">
<h4>Go</h4>
Coming soon...
</div>

</div>

<h3>Related projects</h3>
Expand Down

0 comments on commit a5de101

Please sign in to comment.