NAME
Text::DeLoreanIpsum - Generate random Back to the Future looking text
SYNOPSIS
  use Text::DeLoreanIpsum;
  my $text = Text::DeLoreanIpsum->new();
  # Generate a string of list of BTTF characters
  $characters = $text->characters();
  # Generate a string of text with 5 words
  $words = $text->words(5);
  # Generate a string of text with 2 sentences
  $sentences = $text->sentences(2);
  # Generate 3 paragraphs
  $paragraphs = $text->paragraphs(3);
DESCRIPTION
Often when developing a website or other application, it's important to have placeholders for content. This module generates prescribed amounts of fake Back to the Future text
CONSTRUCTOR
METHODS
words( INTEGER )- 
Returns INTEGER words from fake BTTF text.
 sentences( INTEGER )- 
Returns INTEGER sentences from fake BTTF text.
 paragraphs( INTEGER )- 
Returns INTEGER paragraphs from fake BTTF text.
 
AUTHOR
Mariano Spadaccini (MARIANOS)
SEE ALSO
L<Text::Lorem> and L<http://deloreanipsum.com/>
COPYRIGHT AND LICENSE
Copyright (C) 2016, 2023, 2024 by Mariano Spadaccini This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.18.2 or, at your option, any later version of Perl 5 you may have available.