]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/talks/tc-lisp-talk/tc-lisp-talk.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / talks / tc-lisp-talk / tc-lisp-talk.factor
index c2a0c14ed8ea992ef0ee9508ab7572c8fbb1c018..f8d7de66da7306d0008358cc8b0ff05c9d231abd 100644 (file)
@@ -56,7 +56,7 @@ CONSTANT: tc-lisp-slides
     { $slide "Non-static stack effect"
         "Not a good practice, nor useful"
         "Not compiled by the optimizing compiler"
-        { $code "100 iota [ ] each" }
+        { $code "100 <iota> [ ] each" }
     }
     { $slide "Module system"
         "Code divided up into vocabulary roots"
@@ -359,7 +359,7 @@ var price = (order == null ? null : order.price);" }
         [ 1 - fib ] [ 2 - fib ] bi +
     ] unless ;"
         }
-        { $code "36 iota [ fib ] map ." }
+        { $code "36 <iota> [ fib ] map ." }
     }
     { $slide "Memoized Fibonacci"
         "Change one word and it's efficient"
@@ -368,7 +368,7 @@ var price = (order == null ? null : order.price);" }
         [ 1 - fib ] [ 2 - fib ] bi +
     ] unless ;"
         }
-        { $code "36 iota [ fib ] map ." }
+        { $code "36 <iota> [ fib ] map ." }
     }
     { $slide "Destructors"
         "Deterministic resource disposal"