packages feed

purescript-0.15.15: tests/purs/passing/ImportHiding.purs

module Main where

import Effect.Console
import Prelude hiding (
  show, -- a value
  class Show, -- a type class
  Unit(..)  -- a constructor
  )

show = 1.0

class Show a where
  noshow :: a -> a

data Unit = X | Y

main = do
  logShow show
  log "Done"