HbcOnly

Plain source file: HbcOnly.hs (Oct 11, 1999)

HbcOnly is imported by: Extra, LexLow.

module HbcOnly where

space :: Int -> String
space n = if n == 0 then ""
          else ' ':space (n-1)

fst3 (a,_,_) = a
snd3 (_,a,_) = a
thd3 (_,_,a) = a

makeDouble :: Integer -> Double -> Int -> Double
makeDouble i f e = (fromIntegral i +f) * (10.0 ^^ e)

Index

(HTML for this module was generated on May 15, 2003. About the conversion tool.)