Re: Random Access Numbers

2002-01-17 Thread Frank

On Wed, Jan 16, 2002 at 10:25:35PM +, Naveen wrote:
 Is there is a built in function in Perl for generating random access #s?
 
 How would that function be used?
---end quoted text---

I've just google'd Random access numbers and there is very little
there. Nothing that seems related to any of the other articles. 

Could you explain what you mean by Random Access Numbers and what you
want them to do in your program?

-- 
 Frank Booth - Consultant
Parasol Solutions Limited.
(www.parasolsolutions.com)

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




RE: Random Access Numbers

2002-01-17 Thread Groenwold, Harmen (ICT) (HK)

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]




Random Access Numbers

2002-01-16 Thread Naveen Parmar

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]