alex-prelude 0.1.0.0 → 0.1.1.0
raw patch · 2 files changed
+14/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ AlexPrelude: print_banner :: IO ()
Files
- AlexPrelude.hs +13/−0
- alex-prelude.cabal +1/−1
AlexPrelude.hs view
@@ -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' ------------------- "
alex-prelude.cabal view
@@ -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