On Sun, 24 Sep 2006, elite elite wrote:

> 
> How do i Assign'Wright" to the scalar how do i do
> that?And how do i change a value of $street to
> 'Washington'


$what_ever = "Wright";
$what_ever = "I have changed it from Wright to this";

$street = 'Washington';

> 
> How do i print $street on it own line just like hello
> world?
> 

print "$street\n";


What did you try?




Owen 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to