packages feed

purescript-0.6.9: examples/passing/InstanceBeforeClass.purs

module Main where

instance fooNumber :: Foo Number where
  foo = 0

class Foo a where
  foo :: a

main = Debug.Trace.trace "Done"