rust-forth-tokenizer 0.2.1

A Forth tokenizer written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
\ test CASE
anew test-case
: TCASE  ( N -- )
    CASE
    0 OF ." is zero" ENDOF
    1 OF
        2 choose
        CASE
        0 OF ." chose zero" ENDOF
        1 OF ." chose one" ENDOF
        [ .s cr ." of-depth = " of-depth @ . cr ]
        ENDCASE
    ENDOF
    [ .s cr ." of-depth = " of-depth @ . cr ]
    ENDCASE
;