diff --git a/bin/bird.hs b/bin/bird.hs
--- a/bin/bird.hs
+++ b/bin/bird.hs
@@ -65,7 +65,7 @@
 configFile a = 
   "module " ++ a ++ ".Config where\n\n" ++
   "import Bird\n\n" ++ 
-  "config :: BirdConfig" ++
+  "config :: BirdConfig\n" ++
   "config = def\n"
 
 mainFile a =
@@ -98,7 +98,9 @@
   "    Bird.PUT -> put $ path r\n" ++
   "    Bird.DELETE -> delete $ path r\n\n" ++
 
-  "main = run app\n"
+  "main = do\n" ++
+  "  putStrLn \"A bird was just spotted in flight at http://localhost:3000\"\n" ++
+  "  run app\n"
 
 split :: Char -> String -> [String]
 split d s
diff --git a/bird.cabal b/bird.cabal
--- a/bird.cabal
+++ b/bird.cabal
@@ -1,5 +1,5 @@
 Name:                 bird
-Version:              0.0.15
+Version:              0.0.16
 Build-type:           Simple
 Synopsis:             A simple, sinatra-inspired web framework.
 Description:          Bird is a hack-compatible framework for simple websites.
