View script | License | Download documentation as: HTML or editable |
Download script | History | Other scripts by: brett |
16-Oct 1:26 UTC
[0.048] 11.033k
[0.048] 11.033k
Documentation for: rebol-text-parser.rSIMPLE REBOL TEXT PARSER1. What is this all about?Parse REBOL code in textual form. Allow mapping of REBOL blocks to their positions in a textual representation. There is more documentation within the comments of the script. 2. How do you use the functions?
if not value? 'script-manager [ script-manager: func ['word /local needs][ if any [ :word <> 'do-needs none? in system/script/header 'needs none? needs: system/script/header/needs ][return] if not parse needs: compose [(:needs)] [some file!][make error! {Expected a NEEDS block consisting of file!.}] foreach [file] needs [do file] ] ]
3. About the script authorBrett Handley started programming REBOL early 2000 and maintains a site of REBOL information and scripts at: http://www.codeconscious.com/rebol/ |