1module Main where 2 3import Prelude 4import Effect.Console 5 6infixl 4 what as ?! 7 8what :: forall a b. a -> b -> a 9what a _ = a 10 11main = log $ "Done" ?! true 12