diff --git a/CHANGES.html b/CHANGES.html index 19f0dbe12c..7266cd6c57 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -23,7 +23,7 @@
2each ( seq seq quot -- quot: elt -- elt ) combinatorjoin ( seq glue -- seq ) combinator. Takes a sequence of sequences, and constructs a new sequence with the glue in between each sequence. For example:
+join ( seq glue -- seq ) word. Takes a sequence of sequences, and constructs a new sequence with the glue in between each sequence. For example:
[ "usr" "bin" "grep" ] "/" join "usr/bin/grep"
count ( n -- [ 0 ... n-1 ] ) word is gone; just use >vector instead. Also, project has been made redundant by map.with-datastack ( stack word -- stack ) combinator.cond ( conditions -- ) combinator. It behaves like a set of nested iftes; see its documentation comment for details. Note that it does not compile.conrib/algebra/. Now, vector operations are possible
+and the syntax doesn't use so many spaces. New way to write the quadratic formula:
+MATH: quadratic[a;b;c] = + plusmin[(-b)/2*a;(sqrt(b^2)-4*a*c)/2*a] ;+(Daniel Ehrenberg)
contrib/crypto/ (Doug Coleman).
+
diff --git a/contrib/algebra/parse-k.factor b/contrib/algebra/parse-k.factor
index d9a73c2827..7902a63de3 100644
--- a/contrib/algebra/parse-k.factor
+++ b/contrib/algebra/parse-k.factor
@@ -1,4 +1,4 @@
-IN: parse-k
+IN: infix
USING: sequences kernel math strings combinators namespaces prettyprint io inspector
errors parser generic lists kernel-internals hashtables words vectors ;
! remove: inspector