From 28bc4568f73f2c3b2725c759e0f335c12167e06d Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 29 Nov 2016 16:18:19 +0100 Subject: [PATCH] add alias --- src/Data/Integer.hs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Data/Integer.hs b/src/Data/Integer.hs index b08ceeb..b45887f 100644 --- a/src/Data/Integer.hs +++ b/src/Data/Integer.hs @@ -1,6 +1,12 @@ +{-# LANGUAGE UnicodeSyntax #-} + -- | An arbitrary-precision integers datatype module Data.Integer ( module GHC.Integer + , ℤ ) where import GHC.Integer + +-- * Aliases +type ℤ = Integer