blob: 6a4db93f2e1695a7ee253407fa54877fe7123f15 [file] [log] [blame]
40 columns |
### Sets use most of the same formatting code as lists, so we don't test
### all of the edge cases here, just the basics.
>>> Const.
const { first , second } ;
<<<
const {first, second};
>>> Split.
({first, second, third, fourth, fifth, sixth});
<<<
({
first,
second,
third,
fourth,
fifth,
sixth,
});
>>> With type argument.
< int > { 1 , 2 };
<<<
<int>{1, 2};