diff --git a/AlexPrelude.hs b/AlexPrelude.hs
--- a/AlexPrelude.hs
+++ b/AlexPrelude.hs
@@ -19,6 +19,7 @@
     ( prompt
     , sleep
     , clear_screen
+    , print_banner
     ) where
 
 import System.IO
@@ -135,3 +136,15 @@
     print "\n"
     print "\n"
     print "\n"
+
+-- | This prints a banner to show that your application was created using AlexPrelude. You are not obliged to use this, but I would be thankful.
+print_banner :: IO ()
+print_banner = do
+    print " ----- 8 ------------------- MADE POSSIBLE BY ------------------- "
+    print "       8                                                          "
+    print ".oPYo. 8 .oPYo. `o  o'   .oPYo. .oPYo. o    o .oPYo. oPYo. .oPYo. "
+    print ".oooo8 8 8oooo8  `bd'    Yb..   .oooo8 8    8 8oooo8 8  `' Yb..   "
+    print "8    8 8 8.      d'`b      'Yb. 8    8 8    8 8.     8       'Yb. "
+    print "`YooP8 8 `Yooo' o'  `o   `YooP' `YooP8 `YooP8 `Yooo' 8     `YooP' "
+    print "                                            8                     "
+    print " --------- SMOKE WEED EVERYDAY --------- ooP' ------------------- "
diff --git a/alex-prelude.cabal b/alex-prelude.cabal
--- a/alex-prelude.cabal
+++ b/alex-prelude.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.1.0.0
+version:             0.1.1.0
 
 -- A short (one-line) description of the package.
 synopsis:            Collection of useful functions for writing console applications
