Arrays

    Array Type🔗

    TYML supports array types.

    /// An array of strings
    settings: [string]
    

    Arrays of union types are also allowed.

    settings: [string | int]
    
    • In TOML
    # !tyml example.tyml
    settings = ["string1", "string2", 100]