1# TOML 1.1 supports newlines in inline tables and trailing commas. 2 3trailing-comma-1 = { 4 c = 1, 5} 6trailing-comma-2 = { c = 1, } 7 8tbl-1 = { 9 hello = "world", 10 1 = 2, 11 arr = [1, 12 2, 13 3, 14 ], 15 tbl = { 16 k = 1, 17 } 18} 19 20tbl-2 = { 21 k = """ 22 Hello 23 """ 24}