summaryrefslogtreecommitdiff
path: root/example/simple.rb
blob: 90b4696890d46a90c014cb0ea93fed7f00ac48b2 (plain)
1
2
3
4
5
require 'msgpack'

serialized = [1, -1, true, false, nil, {"key" => "value"}].to_msgpack
p MessagePack.unpack(serialized)