import toml; import std.stdio : writeln; import std.file : read; TOMLDocument toml_s; void main(){ toml_s = parseTOML(cast(string)read("dopp.toml")); writeln("indent_matter: ", toml_s["indent_matter"]); // 4 }