diff --git a/Test/Robot.hs b/Test/Robot.hs
--- a/Test/Robot.hs
+++ b/Test/Robot.hs
@@ -19,7 +19,8 @@
     , hold
     , tap
 
-      -- * Fancy utilities
+      -- * Miscellaneous
+    , releaseAll
     , sleep
 
     ) where
diff --git a/examples/GoFast.hs b/examples/GoFast.hs
new file mode 100644
--- /dev/null
+++ b/examples/GoFast.hs
@@ -0,0 +1,13 @@
+-- | Press the spacebar repeatedly, really really fast.
+--
+-- 1. Go to <http://mixermike622.deviantart.com/art/GO-FAST-287788805>
+-- 2. Run this program
+-- 3. ???
+-- 4. Profit
+
+import Control.Monad (forever)
+import Test.Robot
+
+main = runRobot . forever $ do
+    sleep 0.1  -- Don't reduce this number, or you'll actually break the game.
+    tap _Space
diff --git a/examples/RightClick.hs b/examples/RightClick.hs
--- a/examples/RightClick.hs
+++ b/examples/RightClick.hs
@@ -5,6 +5,3 @@
 
 main = runRobot $ mapM_ (>> sleep 0.25)
                         [tap rightButton, tap _Down, tap _Return]
-  where
-    _Down = customKey 0xff54
-    _Return = customKey 0xff0d
diff --git a/robot.cabal b/robot.cabal
--- a/robot.cabal
+++ b/robot.cabal
@@ -1,5 +1,5 @@
 Name:                robot
-Version:             1.0
+Version:             1.0.1
 Synopsis:            Simulate keyboard and mouse events
 Homepage:            https://github.com/lfairy/robot
 License:             OtherLicense
