Hi,
if you just want random numbers, there is a very simple function: RAND.
Works like this:

#!perl -w
use strict;
my ($varNumber);
$varNumber = rand;
print "Random number is: ", $varNumber,"\n";

Harmen Groenwold
[EMAIL PROTECTED]

-----Original Message-----
From: Naveen Parmar [mailto:[EMAIL PROTECTED]]
Sent: woensdag 16 januari 2002 11:26 
To: [EMAIL PROTECTED]
Subject: Random Access Numbers


Is there is a built in function in Perl for generating random access #s?

How would that function be used?

TIA,
- NP

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to