Display a list of items
static void list(List<String> items, {int spaces = 2}) { for (final item in items) { indent(item, spaces: spaces); } }