>>>>> "D" == Dwayne Smurdon @ DNA Media Pro <smurdon / dnamediapro.com> writes:

D> contact.phone = "703-277-7272"

 When you write this, you call the method #phone=

 This is *like* if you write contact.phone=("703-277-7272")

D> But, let's say I have a variable, called meth.  And meth == "phone".  I want
D> to use my variable meth like this:

 Use #send

   contact.send("#{meth}=", "703-277-7272")



Guy Decoux