Help language development. Donate to The Perl Foundation

TOML zef:tony-o last updated on 2021-05-01

bd464ba01277d124c4498ed7932280b377cfabde/

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' hash

Generating 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

License: Artistic-2.0

Authors

@tony-o

Credits

The tests here use @BurntSushi's toml-tests.