Changeset 162 for trunk/thune/doc

Show
Ignore:
Timestamp:
05/27/06 21:22:22 (3 years ago)
Author:
krobillard
Message:

Thune -

Opcode selector is now preserved by infuse & ur_toStr().
Added ur_makeBinaryFrom() & ur_encodingCharSize[].
Command line arguments now passed to script in 'args.
Switched order of 'iter arguments.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/doc/UserManual

    r152 r162  
    189189while     (body cond -- )            Evaluate body while cond is true. 
    190190loop      (block n -- )              Repeat block **n** times. 
    191 iter      (block ser -- )            Iterate over series. 
     191iter      (ser block -- )            Iterate over series. 
    192192proc      (body -- )                 Create procedure. 
    193193func      (sig body -- )             Create function with local values. 
     
    201201error     (message -- error)         Throw error. 
    202202verify    (a type -- a)              Throw error if datatype does not match. 
    203 verify.2  (a b ta tb -- a b)         Throw error if datatypes do not match. 
    204 verify.3  (a b c ta tb tc -- a b c)  Throw error if datatypes do not match. 
     203verify/N  (a1-aN t1-tN -- a1-aN)     Throw error if datatypes do not match. 
    205204========  =========================  ============================ 
    206205