mixins.rest-args.pug 98 B

123456
  1. mixin list(tag, ...items)
  2. #{tag}
  3. each item in items
  4. li= item
  5. +list('ul', 1, 2, 3, 4)