Noogλe
search input
Function of the day
Reads a TOML file.
Examples
lib.trivial.importTOMLusage exampleexample.toml
title = "TOML Example" [hello] world = "foo" [hello.bar] foobar = trueimportTOML ./example.toml => { title = "TOML Example"; hello = { world = "foo"; bar = { foobar = true; }; }; }Inputs
path-
1. Function argument
Type
importTOML :: path -> any