module MessagePack

def pack(v, *rest)

def pack(v, *rest)
  packer = DefaultFactory.packer(*rest)
  packer.write v
  packer.full_pack
end