Files
Toy/test/scripts/trailing-comma-bugfix.toy

8 lines
111 B
Plaintext

var array = [
1, 2, 3,
4, 5, 6,
7, 8, 9, //explicitly leave a trailing comma
];
print "All good";