blob: 62a738aa5a420c0b2a1b946c9a4c0f96a2aa6b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{-# LANGUAGE MagicHash #-}
module Main (main) where
import GHC.Exts (Double(D#), Float(F#), word2Double#, word2Float#)
main :: IO ()
main = do
print (D# (word2Double# 0##))
-- 4294967295 is 2^32 - 1, the largest 32-bit integer, and can be
-- stored in a 64-bit IEEE floating-point value without loss of
-- precision.
print (D# (word2Double# 4294967295##))
print (F# (word2Float# 0##))
-- 16777216 is 2^24, which is the largest integer which can be
-- stored in a 32-bit IEEE floating-point value without loss of
-- precision
print (F# (word2Float# 16777216##))
|