otter 0.7.1

Otter game system; common infrastructure Rust crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl -w
# Copyright 2020-2021 Ian Jackson and contributors to Otter
# SPDX-License-Identifier: AGPL-3.0-or-later
# There is NO WARRANTY.

use strict;
use Data::MessagePack;
use Data::Dumper;
$Data::Dumper::Sortkeys=1;
$/ = undef;
$!=0; $_ = <> // die $!;
my $mp = Data::MessagePack->new();
my $val = $mp->unpack($_);
print Dumper($val);