NAME TOML - Parser for Tom's Obvious, Minimal Language. SYNOPSIS use TOML qw(from_toml); my $toml = slurp("~/.foo.toml"); my $data = from_toml($toml); DESCRIPTIOn "TOML" implements a parser for Tom's Obvious, Minimal Language, as defined at . "TOML" exports a single subroutine, "from_toml", that transforms a string containing toml to a perl data structure. This data structure complies with the tests provided at . AUTHOR Darren Chamberlain