TOML
TOML
A TOML 1.0.0 compliant serializer/deserializer.
Usage
Parsing TOML
use TOML;
my $config = from-toml("config.toml".IO.slurp);
# use $config like any ol' hashGenerating TOML
use TOML;
my $config = {
  bands => ['green day',
            'motorhead',
            't swift',],
  favorite => 'little big',
};
my $toml-config = to-toml($config);
#favorite = "little big"
#bands = ["green day",
#         "motorhead",
#         "t swift"]License
Authors
Credits
The tests here use @BurntSushi's toml-tests.