Changeset 262 for trunk/thune/doc

Show
Ignore:
Timestamp:
08/30/06 03:32:14 (2 years ago)
Author:
krobillard
Message:

Thune - Added if/keep. 'Case uses this so unhandled cases don't leave 'none on the stack.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/doc/UserManual

    r252 r262  
    191191:: 
    192192 
    193         [blk block!  count int!/decimal! -- "Argument type example"] 
    194         [ 
    195                 ; ... 
    196         ] 
    197         func 
     193    [blk block!  count int!/decimal! -- "Argument type example"] 
     194    [ 
     195        ; ... 
     196    ] 
     197    func 
    198198 
    199199 
     
    257257ift       (logic -- )                Evaluate next value if true. 
    258258iff       (logic -- )                Evaluate next value if false. 
    259 if/C      (val val -- )              Evaluate next value if comparison is true. 
     259if/C      (val val -- )              Evaluate next value if comparison is true. 
     260if/keep   (val -- [val])             Evaluate next value if true, else drop. 
    260261either    (logic t-val f-val -- )    Evaluate either t-val or f-val. 
    261262forever   (block -- )                Evaluate block until exception thrown.