shithub: MicroHs

ref: 405cddb412eae4af7cefb1091612290f875d5dc4
dir: /tests/Default.hs/

View raw version
module Default(main) where
import Prelude
default (Int, Double)

main :: IO ()
main = do
  print 1
  print 1.5
  print []   -- defaults to Int, a little weird