Mega Code Archive

 
Categories / Perl / System Functions
 

Using foreach loop to create a list of random number

print "Some lottery numbers to try:"; foreach (1 .. 6) {     print " " . int rand (50) + 1; }