Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Series of objects

From: maximo:meteorstudios at: 22-Aug-2003 11:55

> >I'm trying to use a command like: clients/i/user: "Bob" > but REBOL tries to > > > > > clients/:i/user >
might I add (just for education's sake) that you can also use the trick to point in an object using a word's value as its attribute. ;=========================================================== familly: make object! [ dad: "Mr. grumpy" mom: "Ms. smiley" sister: none ] member: 'mom print familly/:member ;=========================================================== also, I usually do:
>> do load clipboard://
to load code on the os clipboard, instead doing paste... it doesn't print all the code and if you press the up arrow, you do not have to skip all the code line by line, in order to get back to your last commands... HTH! -MAx