gdritter repos electric-boogaloo / 2b98d23
Version bump for GHC version Getty Ritter 6 years ago
2 changed file(s) with 9 addition(s) and 5 deletion(s). Collapse all Expand all
11 name: electric-boogaloo
2 version: 0.1.2
2 version: 0.1.3
33 synopsis: Simple opinionated sugar for SQLite
44 description: A basic translator for a straightforward, terse sugar
55 designed for making certain SQLite table definitions
88 license-file: LICENSE
99 author: Getty Ritter <gettyritter@gmail.com>
1010 maintainer: Getty Ritter <gettyritter@gmail.com>
11 copyright: ©2016 Getty Ritter
11 copyright: ©2017 Getty Ritter
1212 category: Database
1313 build-type: Simple
1414 cabal-version: >= 1.12
1515
16 source-repository head
17 type: git
18 location: git://github.com/aisamanra/electric-boogaloo.git
19
1620 executable electric-boogaloo
1721 hs-source-dirs: src
1822 main-is: Main.hs
19 default-extensions: OverloadedStrings,
20 ScopedTypeVariables
2123 ghc-options: -Wall
22 build-depends: base >=4.7 && <4.9,
24 build-depends: base >=4.7 && <5,
2325 text >=1.2.2 && <1.3
2426 default-language: Haskell2010
1 {-# LANGUAGE OverloadedStrings #-}
2
13 module Main where
24
35 import Control.Monad (when)