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

[REBOL] Re: to-char

From: jason:cunliffe:verizon at: 13-Feb-2002 15:31

From: "Joel Neely" <[joel--neely--fedex--com]>
> Forgive me if I over-explain. I don't mean to insult your > intelligence/experience. This kind of question comes up > periodically, so I thought I'd cover all the basics in case > any newcomers to the list are puzzled by this (or related) > issues.
Joel Thanks very much. Your explanation and the posts which followed were just what I was hoping for. So now let me ask an even more basic [FA] question: What is happening, what is the real meaning of someblock: [] What is going on when I call it within a function and then call the function repeatedly [when the previous values remain]. ie: why do I _really_ need clear or copy? Would like to see more helpful doc lookups for : and []
>> ? :
** Syntax Error: Invalid word-get -- : ** Near: (line 1) ? :
>> ? []
[] is a block
>> ? clear
USAGE: CLEAR series DESCRIPTION: Removes all values from the current index to the tail. Returns at tail. CLEAR is an action value. ARGUMENTS: series -- (Type: series port none) thanks ./Jason