]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/fib4/fib4.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / extra / benchmark / fib4 / fib4.factor
index c988e5722e6c693762f0e3bf648bf13c12fb5215..fa49503797be993608ee5981de72145f4dde6009 100644 (file)
@@ -9,10 +9,10 @@ C: <box> box
     dup i>> 1 <= [
         drop 1 <box>
     ] [
-        i>> 1- <box>
+        i>> 1 - <box>
         dup tuple-fib
         swap
-        i>> 1- <box>
+        i>> 1 - <box>
         tuple-fib
         swap i>> swap i>> + <box>
     ] if ; inline recursive