File: Examples.hs

package info (click to toggle)
haskell-acid-state 0.16.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 932 kB
  • sloc: haskell: 3,692; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Main (main) where

import qualified ChangeState
import qualified ChangeVersion
import qualified CheckpointCutsEvent
import qualified Exceptions
import qualified RemoveEvent
import qualified SlowCheckpoint

main :: IO ()
main = do
  ChangeState.test
  ChangeVersion.test
  CheckpointCutsEvent.main
  Exceptions.test
  RemoveEvent.test
  SlowCheckpoint.main