[REBOL] Re: to-char
From: brett::codeconscious::com at: 11-Feb-2002 13:30
Read up on series in the manual. A string is a series. A block is a series. For example, first "Hello" pick "Hello" 3 repeat a-char "Hello" [print a-char] If you need the characters seperately in a block: block-of-char: copy [] repeat a-char "Hello" [ append block-of-char a-char ] Now perhaps you can help me. What does "yadda" actually mean? Brett.