fake_words
$generator = fake_words(); # single "lorem" word
$generator = fake_words($n); # N "lorem" words, space separated
$generator = fake_words( fake_int(1, 3) ); # random number of them
Returns a generator that provides space-separated Text::Lorem words as a single scalar value. The
argument is the number of words to return (or a code reference to provide the number of words); the
default is one.
fake_sentences
$generator = fake_sentences(); # single fake sentence
$generator = fake_sentences($n); # N sentences
$generator = fake_sentences( fake_int(1, 3) ); # random number of them
Returns a generator that provides Text::Lorem sentences as a single scalar value. The argument is the
number of sentences to return (or a code reference to provide the number of sentences); the default is
one.
fake_paragraphs
$generator = fake_paragraphs(); # single fake paragraph
$generator = fake_paragraphs($n); # N paragraph
$generator = fake_paragraphs( fake_int(1, 3) ); # random number of them
Returns a generator that provides Text::Lorem paragraphs as a single scalar value. The argument is the
number of paragraphs to return (or a code reference to provide the number of paragraphs); the default is
one.