packages feed

purescript-0.7.2.0: examples/passing/EmptyTypeClass.purs

module Main where

import Prelude

class Partial

head :: forall a. (Partial) => Array a -> a
head [x] = x

instance allowPartials :: Partial

main = Control.Monad.Eff.Console.log $ head ["Done"]