to toml for formats

Convert record into .toml text.

Signature

> to toml {flags}

Input/output types:

inputoutput
recordstring

Examples

Outputs an TOML string representing the contents of this record

> {foo: 1 bar: 'qwe'} | to toml
bar = "qwe"
foo = 1