Re: Syntax of Messages

2002-02-12 Thread Anthony LaBerge
Thank you Rob. That was the answer I was looking for. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Syntax of Messages

2002-02-12 Thread Hanson, Robert
$_ is the default scalar variable (sort of). Perl will sometimes set this variable for you so that you don't need to create your own. It's just a shortcut of sorts. Here is an example... foreach ( @list ) { print $_; } For each item in the array @list Perl will set the variable $_ to

Re: Syntax of Messages

2002-02-12 Thread Tyler Longren
you use $ for variables and @ for arrays. the Quantum::Entanglement module is a quantum programming module. It tries to replicate what it would be like to program on a quantum computer. Tyler - Original Message - From: "Anthony LaBerge" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: