diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 08:08:38 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 08:08:38 -0500 |
commit | 3dc947a7575bd23703644996d8e853e5e618b2e3 (patch) | |
tree | c91ff763003cb1b83f76c31b0948ff8699280f57 /forth/fib.fth | |
parent | b33c0c564c51252ff241a2143e467dadfb8d8994 (diff) |
fix execute; disable verify(); bench w/ standalone
Diffstat (limited to 'forth/fib.fth')
-rw-r--r-- | forth/fib.fth | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forth/fib.fth b/forth/fib.fth index 82c87cd..671528a 100644 --- a/forth/fib.fth +++ b/forth/fib.fth @@ -9,7 +9,7 @@ 5 sys fib 5 sys >r 2drop r> ; variable avg 0 avg ! -100 constant iters +2000 constant iters : bench ( -- ) iters 0 do 100 fibbench avg +! loop |