but someone might find this useful. I like to think it
taps into the unlimited chaotic potential of Perl. Here's
the code.
#!/usr/bin/perl use strict; use warnings; my @words = ("copy ","study ","meditate ","write from scratch "); my @words2 = ("and ","or "); my @words3 = ("scalars ","arrays ","hashes ","regexes ","subroutines " +,"cpan ","perlmonk archives ","cgi "); print $words[rand @words], $words2[rand @words2], $words[rand @words], + $words3[rand @words3], "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: My random project generator
by b10m (Vicar) on Nov 16, 2006 at 09:09 UTC | |
by strfry() (Monk) on Dec 17, 2006 at 14:52 UTC | |
|
Re: My random project generator
by dewey (Pilgrim) on Nov 16, 2006 at 07:07 UTC |