in reply to Re: Re: creating all possible random 'words' from 4 letters
in thread creating all possible random 'words' from 4 letters
If you don't want them all in one list, just call glob in a scalar context and it will act as an iterator for you.
perl -le" print while glob '{A,B,C,D}'x4 "
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: creating all possible random 'words' from 4 letters (pass buck)
by tye (Sage) on Nov 07, 2003 at 19:26 UTC | |
by BrowserUk (Patriarch) on Nov 07, 2003 at 19:36 UTC | |
by QM (Parson) on Nov 13, 2003 at 14:23 UTC |