# File lib/gherkin/formatter/pretty_formatter.rb, line 53
      def examples(examples)
        @io.puts
        print_comments(examples.comments, '    ')
        print_tags(examples.tags, '    ')
        @io.puts "    #{examples.keyword}: #{examples.name}"
        print_description(examples.description, '    ')
        table(examples.rows)
      end