sov-kernel-monster / haskell /test_bang.hs
SNAPKITTYWEST's picture
chore: push full sov-kernel-monster content from local build
9425aed verified
Raw
History Blame Contribute Delete
200 Bytes
{-# LANGUAGE BangPatterns #-}
module Main where
test :: Double
test =
let m_sun = 1.989e30
g = 6.674e-11
c = 299792458.0
rs = 2.0 * g * m_sun / (c * c)
in rs
main = return ()