]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/lists/lists.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / basis / lists / lists.factor
index 0eedb808891605748f2857c2d0c1d4bb9d4dcad0..ddf1ab91098e2e7abab454a4424775fbc4af404b 100644 (file)
@@ -71,7 +71,7 @@ PRIVATE>
     ] if ; inline recursive
 
 : llength ( list -- n )
-    0 [ drop 1+ ] foldl ;
+    0 [ drop 1 + ] foldl ;
 
 : lreverse ( list -- newlist )    
     nil [ swap cons ] foldl ;