diff --git a/forest-fire.cabal b/forest-fire.cabal
--- a/forest-fire.cabal
+++ b/forest-fire.cabal
@@ -1,5 +1,5 @@
 name:                forest-fire
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            Recursively delete CloudFormation stacks and their dependants
 description:
   This simple tool will repeatedly query CloudFormation
diff --git a/src/Lib.hs b/src/Lib.hs
--- a/src/Lib.hs
+++ b/src/Lib.hs
@@ -1,8 +1,3 @@
--- TODO
--- * test suite (around JSON parsing, mostly)
--- * readme (w/ how to install and use)
--- * send to Hackage/Stackage
-
 module Lib where
 
 import Types
@@ -20,11 +15,12 @@
 showDeletionPlan stackName = do
   putStrLn $ "Retrieving dependencies of " ++ stackName ++ "..."
   tree <- buildDependencyGraph (StackName stackName)
-  -- let tree = exampleDep2
   putStrLn "Done.  Delete these stacks in postorder traversal:\n"
   putStrLn $ drawTree (dependencyToTree tree)
   putStrLn "Or, delete manually in this order:\n"
   mapM_ putStrLn $ postorder (dependencyToTree tree)
+  putStrLn "\nIf you trust this app you can execute:"
+  putStrLn $ "forest-fire \"" ++ stackName ++ "\" --delete\n"
 
 actuallyDoTheDelete :: String -> IO ()
 actuallyDoTheDelete stackName = do
