purescript-0.5.4.1: examples/passing/TypeClassesInOrder.purs
module Main where import Prelude class Foo a where foo :: a -> String instance fooString :: Foo String where foo s = s main = Debug.Trace.trace $ foo "Done"
module Main where import Prelude class Foo a where foo :: a -> String instance fooString :: Foo String where foo s = s main = Debug.Trace.trace $ foo "Done"