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

[REBOL] Re: email command Bot

From: carl::cybercraft::co::nz at: 28-Mar-2004 0:24

[snip]
> build-url: func [domain file][join domain file]
[snip]
>That said, the one REBOL refresher-course us long-time users should >take every now and then is to re-read its style-guide... > >http://www.rebol.com/docs/core23/rebolcore-5.html#section-5
And where, ahem, you'll find they say this... There are standard names in REBOL that should be used for similar types of operations. For instance: make-blub ;creating something new free-blub ;releasing resources of something copy-blub ;copying the contents of something to-blub ;converting to it insert-blub ;inserting something remove-blub ;removing something clear-blub ;clearing something Thus my BUILD-URL should really be MAKE-URL... :-) -- Carl Read