diff --git a/Control/Concatenative.hs b/Control/Concatenative.hs
--- a/Control/Concatenative.hs
+++ b/Control/Concatenative.hs
@@ -23,11 +23,11 @@
     
     -- * Postfix arrows
     
-    -- | The arrow functions '&&&' and '***' are equivalent to 'bi' and 'biSp'.
+    -- | The arrow functions '&&.' and '**.' are equivalent to 'bi' and 'biSp'.
     -- Combining here must be done seperately, through the '>>@' function.
     
     (>>@), dup, swap, both,
-    (>>>), (&&&), (***), first, second,
+    (>>.), (&&.), (**.), first, second,
     
     -- * Generalized Datatypes
     
@@ -161,6 +161,23 @@
 triApM_ f x y z = f x >> f y >> f z >> return ()
 
 -- Arrow Interface
+
+infixl 3 >>@
+infixl 3 &&.
+infixl 3 **.
+infixl 4 >>.
+
+-- |Left associative version of '&&&'
+(&&.) :: Arrow a => a b c -> a b c' -> a b (c, c')
+(&&.) = (&&&)
+
+-- |Left associative version of '***'
+(**.) :: Arrow a => a b c -> a b' c' -> a (b,b') (c,c')
+(**.) = (***)
+
+-- |Left associative version of '>>>'
+(>>.) :: Arrow a => a b c -> a c d -> a b d
+(>>.) = (>>>)
 
 -- | Combine with a binary function
 (>>@) :: Arrow a => a b (x,y) -> (x -> y -> z) -> a b z
diff --git a/concatenative.cabal b/concatenative.cabal
--- a/concatenative.cabal
+++ b/concatenative.cabal
@@ -1,5 +1,5 @@
 name:                concatenative
-version:             1.0.0
+version:             1.0.1
 synopsis:            A library for postfix control flow.
 description:         Concatenative gives haskell factor style
                      combinators and arrows for postfix notation.
